Etheras
  1. You are here:  
  2. Home
  3. VICI
  4. VICI-manager-manual
  5. VICI

Vicibox Scratch OpenSuse

Details
Category: VICI
Published: 09 May 2023
Hits: 352

How to – Vicibox 9 Scratch Install: OpenSuse 15.3

Here are the steps I used to do a vicibox 9 scratch install on OpenSuse Leap 15.3

###This is going to help you install Vicidial 9.0.2 on OpenSuSE 15.3 on an Amazon AWS

###First open an account on AWS and create an instance, choose linux, os only, opensuse.

###SSH to the server, you will need to have a ssh key to do this, download the .pem file from amazon and use puttygen to convert it

###Now is where it starts and i will just be telling you the commands to run

sudo -i

zypper install kernel*

press # 2 for all 4 choices it gives you

zypper ar https://download.opensuse.org/repositories/home:vicidial:asterisk-16/openSUSE_Leap_15.3/home:vicidial:asterisk-16.repo

zypper ref

zypper up

zypper install asterisk

reboot

sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/g’ /etc/selinux/semanage.conf

              ***Add Swap File

mkdir -p /var/lib/swap

dd if=/dev/zero of=/var/lib/swap/swapfile bs=1M count=1024

mkswap /var/lib/swap/swapfile

swapon /var/lib/swap/swapfile

cat /proc/swaps

***Add Swap into startup

vim /etc/fstab

Type “i”

Add a new line below what’s there

COPY whats in quotes – “/var/lib/swap/swapfile swap swap defaults 0 0” Press CNTL+C

Type what’s in quotes – “:wq”

Press Enter

###installing dependencies

zypper install make patch gcc gcc-c++ subversion php php-devel php-gd gd-devel php-mbstring php-mcrypt php-imap php-ldap php-mysql php-odbc php-pear php-xml php-xmlrpc curl curl-devel perl-libwww-perl ImageMagick libxml2 libxml2-devel httpd libpcap libpcap-devel libnet ncurses ncurses-devel screen mysql-devel ntp mutt wget nano unzip sipsak sox libuuid-devel

zypper install sqlite3-devel

zypper install mariadb-server mariadb

zypper install httpd php-common php-pdo mod_ssl perl-DBI perl-DBD-MySQL perl-Digest-HMAC perl-YAML

zypper install perl-ExtUtils-ParseXS perl-NetAddr-IP perl-Crypt-SSLeay perl-Curses perl-DBD-Pg perl-Module-ScanDeps perl-Text-CSV perl-HTML-Template perl-IO-Compress perl-Text-Glob perl-Jcode perl-Test-Script perl-Archive-Tar perl-Test-Base perl-OLE-Storage_Lite perl-Archive-Zip perl-Net-Server perl-Convert-ASN1 perl perl-Compress-Raw-Zlib perl-Digest-SHA1 perl-Data-Dumper perl-Error perl-ExtUtils-CBuilder perl-Test-Tester perl-Parse-RecDescent perl-Spiffy perl-IO-Zlib perl-Module-Build perl-HTML-Parser perl-Net-SSLeay perl-Proc-ProcessTable perl-TermReadKey perl-Term-ReadLine-Gnu perl-Digest-SHA perl-Tk perl-Net-SNMP perl-Test-NoWarnings perl-XML-Writer perl-Proc-PID-File perl-Compress-Raw-Bzip2 perl-libwww-perl perl-XML-Parser perl-File-Remove perl-Parse-CPAN-Meta perl-Set-Scalar perl-Probe-Perl perl-File-Which perl-Package-Constants perl-Module-Install perl-File-HomeDir perl-Spreadsheet-ParseExcel perl-Mail-Sendmail

zypper install perl-Spreadsheet-XLSX asterisk-perl perl-version perl-Crypt-DES perl-URI perl-Net-Daemon perl-IO-stringy perl-YAML-Tiny perl-HTML-Tagset perl-Socket6 perl-BSD-Resource perl-IPC-Run3 perl-Text-CSV_XS perl-Unicode-Map perl-Net-Telnet perl-PAR-Dist perl-Date-Manip perl-JSON perl-rrdtool lame screen iftop dahdi-linux-devel perl-GD

###preparing for the next part with MCPAN

perl -MCPAN -e ‘my $c = “CPAN::HandleConfig”; $c->load(doit => 1, autoconfig => 1); $c->edit(prerequisites_policy => “follow”); $c->edit(build_requires_install_policy => “yes”); $c->commit’

cpan -i String::CRC Tk::TableMatrix Net::Address::IP::Local Term::ReadLine::Gnu Spreadsheet::Read Net::Address::IPv4::Local RPM::Specfile Spreadsheet::XLSX Spreadsheet::ReadSXC

cpan MD5 Digest::MD5 Digest::SHA1 Bundle::CPAN Pod::Usage Getopt::Long DBI DBD::mysql Net::Telnet Time::HiRes Net::Server Mail::Sendmail Unicode::Map Jcode Spreadsheet::WriteExcel OLE::Storage_Lite Proc::ProcessTable IO::Scalar Scalar::Util Spreadsheet::ParseExcel Archive::Zip Compress::Raw::Zlib Spreadsheet::XLSX Test::Tester Spreadsheet::ReadSXC Text::CSV Test::NoWarnings Text::CSV_PP File::Temp Text::CSV_XS Spreadsheet::Read LWP::UserAgent HTML::Entities HTML::Strip HTML::FormatText HTML::TreeBuilder Switch Time::Local MIME::POP3Client Mail::IMAPClient Mail::Message IO::Socket::SSL readline

###copy and paste this at the same time:

cd /usr/bin/

curl -LOk http://xrl.us/cpanm

chmod +x cpanm

cpanm -f File::Which

cpanm -f File::HomeDir

cpanm CPAN::Meta::Requirements

cpanm -f CPAN

cpanm YAML

cpanm MD5

cpanm Digest::MD5

cpanm Digest::SHA1

cpanm Bundle::CPAN

cpanm -f DBD::mysql

cpanm Curses

cpanm Getopt::Long

cpanm Net::Domain

cpanm Term::ReadKey

cpanm Term::ANSIColor

cpanm HTML::FormatText

cpanm MIME::Decoder

cpanm Mail::POP3Client

cpanm User::Identity –force

cpanm Mail::Message

cpanm Crypt::Eksblowfish::Bcrypt

###lets add mysql(mariadb) and apache2 as services to autostart

systemctl start mariadb; systemctl enable mariadb; systemctl start apache2; systemctl enable apache2

###reboot the pc

***Asterisk PERL Module 0.8 Installation – 

Zypper in asterisk-perl

cd /usr/src/

wget http://download.vicidial.com/required-apps/asterisk-perl-0.08.tar.gz

tar -zxf asterisk-perl-0.08.tar.gz

cd asterisk-perl-0.08

perl Makefile.PL && make all && make install

***Install Jansson

cd /usr/src/

wget http://www.digip.org/jansson/releases/jansson-2.9.tar.gz

tar -zvxf jansson-2.9.tar.gz

cd jansson-2.9

./configure && make clean && make && make install

ldconfig

rm *.tar.gz

***Install Asterisk – Dadhi and libpri

mkdir /usr/src/asterisk

cd /usr/src/asterisk

wget http://downloads.asterisk.org/pub/telephony/libpri/libpri-current.tar.gz

wget http://downloads.asterisk.org/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz

http://download.vicidial.com/beta-apps/asterisk-16.17.0-vici.tar.gz

tar xzf asterisk-*

tar xzf dahdi-linux-complete-*

tar xzf libpri-*

cd /usr/src/asterisk/dahdi-linux-complete-3.1.0+3.1.0/

rpm -i https://rpmfind.net/linux/opensuse/update/leap/15.1/oss/noarch/kernel-devel-4.12.14-lp151.28.48.1.noarch.rpm

make && make install

cd /usr/src/asterisk/libpri-1.6.0

make clean

make

make install

cd /usr/src/asterisk/asterisk/asterisk-16.17.0/

./configure --libdir=/usr/lib64 --with-pjproject-bundled -with-jansson-bundled

rm menuselect.makeopts

make menuselect*

 

!!!*MAKE SURE TO scroll down to Applications, press enter, scroll down to > App.MeetME press space bar so you see: [*] and press x to save and exit

make && make install && make samples

chkconfig asterisk on

make && make install && make sameples && make config && make basic-pbx

/usr/share/astguiclient/start_asterisk_boot.pl

 

mkdir /usr/src/astguiclient

cd /usr/src/astguiclient

svn checkout svn://svn.eflo.net:3690/agc_2-X/trunk

 

***DataBase Creation

mysql

CREATE DATABASE `asterisk` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;

CREATE USER 'cron'@'localhost' IDENTIFIED BY '1234';

GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@'%' IDENTIFIED BY '1234';

GRANT SELECT,INSERT,UPDATE,DELETE,LOCK TABLES on asterisk.* TO cron@localhost IDENTIFIED BY '1234';

GRANT RELOAD ON *.* TO cron@'%';

GRANT RELOAD ON *.* TO cron@localhost;

flush privileges;

exit

mysql

SET GLOBAL connect_timeout=60;

use asterisk;

\. /usr/src/astguiclient/trunk/extras/MySQL_AST_CREATE_tables.sql

\. /usr/src/astguiclient/trunk/extras/first_server_install.sql

ALTER TABLE phones ALTER template_id SET DEFAULT '';

\. /usr/src/astguiclient/trunk/extras/sip-iax_phones.sql

quit

 

/usr/src/astguiclient/trunk/install.pl

/usr/share/astguiclient/ADMIN_area_code_populate.pl

/usr/src/astguiclient/trunk/bin/ADMIN_update_server_ip.pl

 

***Install ViciDial

mkdir /usr/src/astguiclient

cd /usr/src/astguiclient

svn checkout svn://svn.eflo.net:3690/agc_2-X/trunk

cd trunk

perl install.pl

##make sure to change web directory to /srv/www/htdocs and to put your public ip, and to put 16.X for asterisk version

 

***Edit /etc/rc.local to contain the following code (enter vi /etc/rc.local to edit with vi, nano /etc/rc.local to edit with nano, ed /etc/rc.local to edit with sed… choose an editor to your liking):

#!/bin/sh

#

# This script will be executed *after* all the other init scripts.

# You can put your own initialization stuff in here if you don’t

# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

# OPTIONAL enable ip_relay(for same-machine trunking and blind monitoring)

/usr/share/astguiclient/ip_relay/relay_control start 2>/dev/null 1>&2

# Disable console blanking and powersaving

/usr/bin/setterm -blank

/usr/bin/setterm -powersave off

/usr/bin/setterm -powerdown

### start up the MySQL server

systemctl start mariadb.service systemctl enable mariadb.service

### start up the apache web server

systemctl start apache2 systemctl enable apache2

### roll the Asterisk logs upon reboot /usr/share/astguiclient/ADMIN_restart_roll_logs.pl

### clear the server-related records from the database /usr/share/astguiclient/AST_reset_mysql_vars.pl

### load dahdi drivers

modprobe dahdi

/usr/sbin/dahdi_cfg -vvvvvvvvvvvvv

### sleep for 20 seconds before launching Asterisk

sleep 20

### start up asterisk

/usr/share/astguiclient/start_asterisk_boot.pl

vicibox 9 scratch install

vicibox 9 scratch install

***Adding to Crontab

crontab -e

 

**Once it opens, Press “i” and then paste the following into crontab:

### recording mixing/compressing/ftping scripts

#0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/share/astguiclient/AST_CRON_audio_1_move_mix.pl

0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/share/astguiclient/AST_CRON_audio_1_move_mix.pl –MIX

0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57 * * * * /usr/share/astguiclient/AST_CRON_audio_1_move_VDonly.pl

1,4,7,10,13,16,19,22,25,28,31,34,37,40,43,46,49,52,55,58 * * * * /usr/share/astguiclient/AST_CRON_audio_2_compress.pl –GSM

#2,5,8,11,14,17,20,23,26,29,32,35,38,41,44,47,50,53,56,59 * * * * /usr/share/astguiclient/AST_CRON_audio_3_ftp.pl –GSM

### keepalive script for astguiclient processes

* * * * * /usr/share/astguiclient/ADMIN_keepalive_ALL.pl –cu3way

### kill Hangup script for Asterisk updaters * * * * * /usr/share/astguiclient/AST_manager_kill_hung_congested.pl

### updater for voicemail

* * * * * /usr/share/astguiclient/AST_vm_update.pl

### updater for conference validator

* * * * * /usr/share/astguiclient/AST_conf_update.pl

### flush queue DB table every hour for entries older than 1 hour 11

* * * * /usr/share/astguiclient/AST_flush_DBqueue.pl -q

### fix the vicidial_agent_log once every hour and the full day run at night 33

* * * * /usr/share/astguiclient/AST_cleanup_agent_log.pl 50 0

* * * /usr/share/astguiclient/AST_cleanup_agent_log.pl –last-24hours

## uncomment below if using QueueMetrics

#*/5 * * * * /usr/share/astguiclient/AST_cleanup_agent_log.pl –only-qm-live-call-check

## uncomment below if using Vtiger #1 1

* * * /usr/share/astguiclient/Vtiger_optimize_all_tables.pl –quiet

### updater for VICIDIAL hopper

* * * * * /usr/share/astguiclient/AST_VDhopper.pl -q

### adjust the GMT offset for the leads in the vicidial_list table

1 1,7 * * * /usr/share/astguiclient/ADMIN_adjust_GMTnow_on_leads.pl –debug

### reset several temporary-info tables in the database

2 1 * * * /usr/share/astguiclient/AST_reset_mysql_vars.pl

### optimize the database tables within the asterisk database

3 1 * * * /usr/share/astguiclient/AST_DB_optimize.pl

## adjust time on the server with ntp 30

* * * * /usr/sbin/ntpdate -u pool.ntp.org 2>/dev/null 1>&2

### VICIDIAL agent time log weekly and daily summary report generation

2 0 * * 0 /usr/share/astguiclient/AST_agent_week.pl 22 0

* * * /usr/share/astguiclient/AST_agent_day.pl

### VICIDIAL campaign export scripts (OPTIONAL)

#32 0 * * * /usr/share/astguiclient/AST_VDsales_export.pl

#42 0 * * * /usr/share/astguiclient/AST_sourceID_summary_export.pl

### remove old recordings more than 7 days old #24 0

* * * /usr/bin/find /var/spool/asterisk/monitorDONE -maxdepth 2 -type f -mtime +7 -print | xargs rm -f

### roll logs monthly on high-volume dialing systems

#30 1 1 * * /usr/share/astguiclient/ADMIN_archive_log_tables.pl

### remove old vicidial logs and asterisk logs more than 2 days old

28 0 * * * /usr/bin/find /var/log/astguiclient -maxdepth 1 -type f -mtime +2 -print | xargs rm -f 29 0

* * * /usr/bin/find /var/log/asterisk -maxdepth 3 -type f -mtime +2 -print | xargs rm -f

30 0 * * * /usr/bin/find / -maxdepth 1 -name “screenlog.0*” -mtime +4 -print | xargs rm -f

### cleanup of the scheduled callback records

25 0 * * * /usr/share/astguiclient/AST_DB_dead_cb_purge.pl –purge-non-cb -q

### GMT adjust script – uncomment to enable

#45 0 * * * /usr/share/astguiclient/ADMIN_adjust_GMTnow_on_leads.pl –list-settings

### Dialer Inventory Report

1 7 * * * /usr/share/astguiclient/AST_dialer_inventory_snapshot.pl -q –override-24hours

### inbound email parser

* * * * * /usr/share/astguiclient/AST_inbound_email_parser.pl

!!!!END CRONTAB HERE

reboot

 

###once it restarts, type “yast” go to network services > http, on the first screen tab to next, then second screen enable all 3 modules(php, python and perl) and then keep going next on the last pages until u get to finish.

How to setup SIP trunk / Carrier / Provider in ViciDial - VicidialNow - Goautodial - Vicibox | SIP Trunking Service Provider | Switch2VoIP

A. Add a new SIP or IAX phone to the system

Details
Category: VICI
Published: 01 May 2023
Hits: 364

Wiki ViciDial: Add a new SIP or IAX phone to the system

CLICK HERE FULL LIST ---> ViciDial MANAGER MANUAL

A. Add a new SIP or IAX phone to the system


This tutorial goes over the steps needed to create a phone account entry in the system that you can configure a soft-phone (computer based phone) or SIP-based hard-phone(a separate physical phone) to use.


For Soft-phones, we usually recommend the IAX soft-phones Zoiper (http://www.zoiper.com) and KIAX(https://sourceforge.net/projects/kiax/) because IAX is a native protocol to ViciDial and it can go through firewalls easier than SIP and it uses less bandwidth than SIP. Some SIP soft-phones that will work are Xlite and Eyebeam. As for hard-phones: Polycom and Snom are recommended, but Linksys/Cisco and Grandstream should also work.





1. Go to the ViciDial administration page, go to the ADMIN section, click on PHONES and click on the ADD A NEW PHONE link


2. For this tutorial we will use the following values for the fields on the ADD A NEW PHONE form :

  • phone extension: 201
  • dialplan number: 201
  • voicemail box: 201
  • outbound callerid: 7275551212
  • server ip: 10.10.10.15 (set this to your server ip)
  • login: 201
  • password: test
  • status: ACTIVE
  • active account: Y
  • phone type: SIP
  • full name: sip201
  • client protocol: SIP
  • local gmt: -5 (GMT timezone, you should NOT include adjusting for Daylight Savings Time) (0 is the UK, +1 is most of Europe, -5 is EST in the USA, -8 is PST in the USA )
  • Template ID: SIP_generic

3. Click the submit button to create this phone record. After one minute, the phone will be active in the system.

NOTE: if you are using a phone outside of a local network, we would strongly recommend changing the “Conf File Secret” field for enhanced security. This field is what you would use as the phone secret or password when you register it on your soft-phone or hard-phone.


4. Go to the Agent's phone and configure the server (or proxy) for the same IP address as you selected above in step 2 for Server-IP, and the login (username) is the Extension as defined above in step 2 and password (secret) is defined as the “Conf File Secret” field in the Phones entry, then click to “Register” if that option is available, or restart the phone or application.


5. Have the agent log into the vicidial.php script with the phone login(Login) of "201" and phone password(Password) of "test".


6. Within a few seconds the agent's phone should ring and they will be logged into ViciDial and can proceed as normal to take calls.

NOTES:

- You can also use phones entries to live monitor through the Real-time report. An example of this is given in Tutorial P.

- If you need to add Channelbank or FXO/FXS phones, you will need to coordinate with your systems administrator to set up the zaptel/dahdi conf files properly as well as adding the dialplan entries to connect to the channel bank agent phones. There are sample zaptel.conf and zapata.conf files included with ViciDial for these kinds of connections, as well as sample dialplan entries in the extensions.conf sample files.


CLICK HERE FULL LIST ---> ViciDial MANAGER MANUAL

VICI-manager-manual

Details
Category: VICI
Published: 01 May 2023
Hits: 715

LIST OF CONTENTS


INTRODUCTION

This manual is meant as a resource for Call Center Managers and System Administrators to better understand how ViciDial works and to learn how to use all of it's features correctly as well as answer questions as to why things work the way they do within ViciDial and it's management interfaces. It is expected that you have thoroughly read through the ViciDial Agent manual before reading this manual.



What is ViciDial?

ViciDial is a Call Center solution that allows agents to log into a web-based agent screen and take inbound and outbound calls as well as place outbound calls manually and from a list. The agent logs into one campaign and can also take calls from one or more in-groups(or inbound queues) at the same time they are placing/taking outbound calls. ViciDial can function as an ACD, Predictive Dialer and can do many of the functions of a standard PBX as well. There are hundreds of features and options available within ViciDial, and they are covered here in this manual.



What is a ViciDial manager?

A ViciDial manager is a person who adds, modifies or deletes users, campaigns, lists, inbound groups(or queues), DIDs, Call Menus(or IVRs), add voicemail boxes, configure phones and manage the music on hold and audio prompts in the system as well as other items within the ViciDial system. They also control the call pacing and other campaign settings while a campaign is running in the call center. A manager can look at performance reports, modify individual customer lead information, listen in on agent phone calls and do many other functions that are needed to run a call center effectively.

This manual is current as of the 2.2.1 release of ViciDial/astGUIclient.



How do the manager administration screens work?

The ViciDial manager administration page(/vicidial/admin.php) gives links to modify many aspects of how the ViciDial systems run. From here you can view real-time reports and modify many kinds of settings. The screen is a fairly basic web page and can be accessed from almost any web browser and even most web-enabled mobile cellphones.

As of the writing of this manual(version 2.2.1), the ViciDial manager administration screens are available fully translated in English, Spanish, Italian, Greek, German, French and Brazilian Portuguese.

The next section of this manual contains tutorials that will show you step-by-step how to set up and use the ViciDial Call Center Suite. The section following the Tutorials will give a basic overview of
Outbound dialing regulations in the USA(United States of America), UK(United Kingdom) and Canada, including USA Federal government FTC regulations and various state regulations. The section following the regulations section will go into detail about how most of the manager features work with a description of every screen in the manager sections of the ViciDial management interface.



TUTORIALS: (Click selection to redirect links)

A. Add a new SIP or IAX phone to the system

B. Add a new Carrier trunk to your system

C. Create a campaign, load leads, add a list, add users and start dialing

D. Change your outbound dialing campaign to use Predictive Dialing

E. Create an inbound-group, point a DID at it, and take calls

F. Set up a remote agent to be able to take calls from the Inbound/Closer-enabled campaign

G. Set up the Audio Store, upload an audio prompt and record a prompt over the phone

H. Set up your outbound campaign to do Answering Machine Detection(AMD)

I. Set up an auto-dial campaign to dial without any live agents and play a message

J. Set up a “press-1” type, or survey, outbound dialing campaign

K. Set up blended in/outbound calling with your inbound-enabled campaign

L. Add a ViciDial External-user Agent on their home phone

M. Add a DID and point it to go to a specific logged-in ViciDial Agent

N. Add a Call Menu(or IVR) to an Inbound DID and inbound group

O. Add a “If you know the extension...” option to a Call Menu with AGENTDIRECT DID entries

P. Add External Phone entry for your mobile phone then live monitor using the Real-time Report.




REGULATIONS FOR THE USA: FTC AND STATES

  • FTC REGULATIONS
  • FTC Federal Do-Not-Call List
  • FTC Safe Harbor Regulations
  • Other FTC Regulations
  • SPECIFIC USA STATE REGULATIONS
  • Local Calling Times
  • Telemarketing Prohibited Holidays and Other Prohibitions
  • State-specific DNC lists
  • Recording of Conversations Regulations
  • REGULATIONS IN OTHER COUNTRIES: UK, CANADA AND OTHERS
  • UK Call Center Regulations
  • Canada Call Center Regulations




OVERVIEW OF ALL MANAGER SCREENS FUNCTIONS

VICIDIAL USERS --- For more details please check this LINK
Adding a New User
Modify User
Agent Interface Options
Admin Interface Options
Descriptions of ViciDial user fields
Delete A User
Copy A User
Search For Users
More User Information
User Time Sheet
User Status
User Stats
User Multiple-Day Status Report
User Territories
User Callbacks
Admin Changes for this User Record


VICIDIAL CAMPAIGNS
Add a New Campaign
Copy A Campaign
Modify Campaigns
Lists Within This Campaign
Dialable Leads and Leads in the Hopper
Campaign Ranks and Call Counts
Campaign-Specific Custom Statuses
Campaign Hotkeys
Campaign Lead Recycling
Auto Alt-Number Dialing Statuses
Agent Pause Codes
Campaign Survey
Campaign List Mix
Logout All Agents From a Campaign
Delete Campaign
Campaign Stats
Real-time Campaign Stats
Historical and Summary Campaign Reports


VICIDIAL LISTS
Add a New List
Modify Lists
List Statistics
Delete List
Search For a Lead
Modifying a Lead
Add or Delete Numbers to/from the Internal and campaign DNC Lists
Download List
Loading New Leads


VICIDIAL SCRIPTS
Add a New Script
Modify Script
Delete Script


VICIDIAL FILTERS
Add a New Filter
Modify Filter
Delete Filter


VICIDIAL IN-GROUPS
Add a New In-Group
Copy An In-Group
Modify In-Group
Inbound Group Agent Rank and Call Count
Delete In-Group


VICIDIAL INBOUND DIDS
Add a New DID
Copy A DID
Modify DID
Delete DID


VICIDIAL CALL MENUS
Add a New Call Menu
Copy A Call Menu
Modify Call Menu


VICIDIAL USER GROUPS
Add a New User Group
Modify User Group
Delete User Group
Group Hourly Report
Bulk Group Change


VICIDIAL REMOTE AGENTS
Add a New Remote Agent
Modify Remote Agent
Delete Remote Agent


ADMIN – Advanced Administration


ADMIN - PHONES
Add a New Phone
Modify Phones
Call-In phone entry, dial-in ViciDial agents
Delete Phone

ADMIN – PHONE ALIAS

GROUP ALIAS

ADMIN - VICIDIAL CALL TIMES
Add a New Call Time Definition
Modify a Call Time Definition
State-specific Call Time Definitions
Delete Call Times
Shifts


ADMIN - SERVERS
Add a New Server
Modify Servers
ViciDial Server Trunks
Conf File Templates
Server Carriers(Trunks)


ADMIN - CONFERENCES and VICIDIAL CONFERENCES
Add a New Conference
Modify Conferences


ADMIN - SYSTEM SETTINGS

ADMIN - SYSTEM STATUSES

ADMIN - SYSTEM STATUS CATEGORIES


ADMIN - VOICEMAIL
Add a New Voicemail Box
Modify Voicemail

ADMIN – AUDIO STORE

ADMIN – MUSIC ON HOLD
Add a New Music On Hold Context
Modify Music On Hold


ADMIN – TEXT TO SPEECH
Add a New Text to Speech Entry
Modify Text to Speech Entry


VICIDIAL SCHEDULED CALLBACKS
ViciDial Timeclock
Timeclock Records Editing
User Status Page
User Stats Page


VICIDIAL STATS AND REPORTS
System-Wide Reports

TIME ON VDAD - Per Campaign
TIME ON VDAD – Change In-Groups
TIME ON VDAD – Live Audio Monitoring
TIME ON VDAD – All Campaigns Summary
TIME ON VDAD – SIP or IAX listen and barge

VDAD OUTBOUND REPORT

VICIDIAL OUTBOUND INTERVAL REPORT

VDAD CLOSER/INBOUND REPORT

INBOUND/CLOSER SERVICE LEVEL REPORT

INBOIUND SUMMARY HOURLY REPORT

INBOUND DID REPORT

IVR/CALLMENU REPORT

AGENT PERFORMANCE DETAIL REPORT

AGENT TIME DETAIL REPORT

AGENT STATUS DETAIL

AGENT DAYS DETAIL

FRONTER – CLOSER REPORT

AGENT SPREADSHEET PERFORMANCE

USER TIMECLOCK REPORT

USER GROUP TIMECLOCK STATUS REPORT

EXPORT CALLS REPORT


ADMIN CHANGES LOG
Server-Specific Reports

SERVER PERFORMANCE REPORT
TIME ON VDAD Report
CLOSER INBOUND Time REPORT

PHONE-BASED VICIDIAL FUNCTIONS
Generating audio prompts through a phone
Blind Monitoring ViciDial Agents
Manager Barge-in on ViciDial Agent Calls

QUEUEMETRICS INTEGRATION

VTIGER INTEGRATION

SANGOMA CALL PROGRESS DETECTION(CPD) INTEGRATION

Main Menu

  • Home
    • 5G
  • SVO
    • Ναζιστικό παρελθόν
    • Ουκρανία, ένας χρόνος πολέμου.
  • ΚΟΣΜΟΣ
    • DNA
    • China
    • Russia
    • Middle East
  • MIR
  • VICI
    • VICI-manager-manual
  • CINEMA

Login Form

  • Forgot your password?
  • Forgot your username?