├── .github └── workflows │ └── el8-rpm.yml ├── .gitignore ├── LICENSE ├── README.md ├── accountcodepreserve ├── functions.inc.php ├── i18n │ └── es_ES │ │ └── LC_MESSAGES │ │ └── accountcodepreserve.po └── module.xml ├── announcement ├── LICENSE ├── agi-bin │ └── picotts.agi ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── announcement.pot │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── announcement.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── announcement.po ├── install.php ├── module.xml ├── page.announcement.php └── uninstall.php ├── asterisk-cli ├── LICENSE ├── functions.inc.php ├── i18n │ ├── asterisk-cli.pot │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── asterisk-cli.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── asterisk-cli.po ├── module.xml └── page.cli.php ├── asteriskinfo ├── LICENSE ├── asteriskinfo.css ├── functions.inc.php ├── i18n │ ├── asteriskinfo.pot │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── asteriskinfo.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── asteriskinfo.po ├── module.xml └── page.asteriskinfo.php ├── asternicivr ├── LICENSE ├── functions.inc.php ├── i18n │ ├── asternicivr.pot │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── asternicivr.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── asternicivr.po │ └── fr_FR │ │ └── LC_MESSAGES │ │ └── asternicivr.po ├── install.php ├── module.xml ├── page.asternic.php └── uninstall.php ├── backup ├── LICENSE ├── assets │ ├── css │ │ └── backup.css │ ├── images │ │ ├── add.png │ │ └── move.png │ └── js │ │ ├── Sortable.min.js │ │ ├── backup.js │ │ └── views │ │ ├── backup.js │ │ ├── jquery.jstree.min.js │ │ ├── restore.js │ │ ├── templates.js │ │ └── themes │ │ ├── apple │ │ ├── bg.jpg │ │ ├── d.png │ │ ├── dot_for_ie.gif │ │ ├── style.css │ │ └── throbber.gif │ │ ├── classic │ │ ├── d.gif │ │ ├── d.png │ │ ├── dot_for_ie.gif │ │ ├── style.css │ │ └── throbber.gif │ │ ├── default-rtl │ │ ├── d.gif │ │ ├── d.png │ │ ├── dots.gif │ │ ├── style.css │ │ └── throbber.gif │ │ └── default │ │ ├── d.gif │ │ ├── d.png │ │ ├── style.css │ │ └── throbber.gif ├── bin │ ├── backup.php │ └── restore.php ├── functions.inc.php ├── functions.inc │ ├── backup.php │ ├── class.backup.php │ ├── restore.php │ ├── servers.php │ └── templates.php ├── i18n │ ├── backup.pot │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── backup.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── backup.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── backup.po ├── install.php ├── module.xml ├── page.backup.php ├── page.backup_restore.php ├── page.backup_servers.php ├── page.backup_templates.php ├── pt_BR │ └── LC_MESSAGES │ │ └── backup.po ├── uninstall.php └── views │ ├── backup │ ├── backup.php │ ├── backups.php │ └── frameworkmsg.php │ ├── cron.php │ ├── item_table.php │ ├── restore │ ├── backup_list.php │ ├── browseserver.php │ ├── frameworkmsg.php │ └── restore.php │ ├── rnav │ ├── backup.php │ ├── main.php │ ├── restore.php │ ├── servers.php │ └── templates.php │ ├── servers │ ├── email.php │ ├── ftp.php │ ├── local.php │ ├── mysql.php │ ├── servers.php │ └── ssh.php │ └── templates │ ├── template.php │ └── templates.php ├── blacklist ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── blacklist.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── blacklist.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── blacklist.po ├── install.php ├── module.xml └── page.blacklist.php ├── bosssecretary ├── README.md ├── form_template.tpl ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── bosssecretary.po │ ├── bosssecretary.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── bosssecretary.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── bosssecretary.pot │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── bosssecretary.po ├── install.php ├── install.sql ├── module.xml ├── page.bosssecretary.php ├── titlelang.php ├── uninstall.php └── uninstall.sql ├── bulkdids ├── .gitattributes ├── .htaccess ├── LICENSE ├── bulkdids.css ├── bulkdids.inc.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── bulkdids.po │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── bulkdids.po │ ├── bulkdids.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── bulkdids.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── bulkdids.pot │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── bulkdids.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── bulkdids.po │ └── ru_RU │ │ └── LC_MESSAGES │ │ └── bulkdids.po ├── module.xml ├── page.bulkdids.php ├── table.csv └── template.csv ├── bulkextensions ├── .htaccess ├── LICENSE ├── bulkextensions.css ├── bulkextensions.inc.php ├── i18n │ ├── bulkextensions.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── bulkextensions.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── bulkextensions.pot │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── bulkextensions.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ ├── bulkextensions.po │ │ └── table.csv ├── module.xml ├── page.bulkextensions.php ├── table.csv └── template.csv ├── callback ├── LICENSE ├── bin │ └── callback ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── callback.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── callback.pot │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── callback.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── callback.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── callback.po ├── install.php ├── install.sql ├── module.xml ├── page.callback.php └── uninstall.php ├── callforward ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── callforward.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── callforward.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── callforward.po ├── install.php └── module.xml ├── callrecording ├── .gitattributes ├── LICENSE ├── bin │ └── one_touch_record.php ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── callrecording.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── callrecording.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── callrecording.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── callrecording.po │ └── ru_RU │ │ └── LC_MESSAGES │ │ └── callrecording.po ├── install.php ├── module.xml ├── page.callrecording.php └── uninstall.php ├── callwaiting ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ ├── callwaiting.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── callwaiting.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── callwaiting.po ├── install.php └── module.xml ├── cdr ├── .gitattributes ├── LICENSE ├── assets │ ├── css │ │ ├── cdr.css │ │ └── daterangepicker.css │ ├── images │ │ ├── cdr_download.png │ │ └── cdr_sound.png │ └── js │ │ ├── cdr.js │ │ ├── moment-with-locales.min.js │ │ └── zdaterangepicker.js ├── cdr_audio.php ├── cdr_play.php ├── crypt.php ├── etc │ ├── cel.conf │ └── cel_odbc.conf ├── functions.inc.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── cdr.po │ ├── cdr.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── cdr.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── cdr.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── cdr.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── cdr.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── cdr.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── cdr.po ├── install.php ├── module.xml └── page.cdr.php ├── cidlookup ├── .gitattributes ├── LICENSE ├── assets │ └── js │ │ ├── jquery.alphanum.js │ │ └── sources.js ├── bin │ └── opencnam-alert.php ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── cidlookup.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── cidlookup.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── cidlookup.po ├── install.php ├── module.xml ├── page.cidlookup.php ├── uninstall.php └── views │ └── main.html.php ├── conferences ├── LICENSE ├── etc │ └── confbridge.conf ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── conferences.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── hu_HU │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── conferences.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── conferences.po ├── install.php ├── module.xml ├── page.conferences.php └── uninstall.sql ├── core ├── .gitattributes ├── LICENSE ├── README.md ├── XML_Parser.php ├── XML_Unserializer.php ├── agi-bin │ ├── checksound.agi │ ├── dialparties.agi │ ├── directory │ ├── enumlookup.agi │ ├── fixlocalprefix │ ├── list-item-remove.php │ ├── sql.php │ └── user_login_out.agi ├── assets │ ├── css │ │ ├── core.css │ │ └── trunks │ │ │ └── trunks.css │ ├── images │ │ └── arrow_up_down.png │ └── js │ │ ├── advancedsettings │ │ └── advancedsettings.js │ │ ├── extensions │ │ └── copy2clipboard.js │ │ ├── routing │ │ └── Sortable.min.js │ │ └── trunks │ │ ├── Sortable.min.js │ │ └── trunks.js ├── etc │ ├── extensions.conf │ ├── features.conf │ ├── func_odbc.conf │ ├── http.conf │ ├── iax.conf │ ├── odbc │ │ └── additional.conf │ ├── pjsip.conf │ ├── res_odbc.conf │ ├── rtp.conf │ ├── sip.conf │ ├── sip_notify.conf │ └── udptl.conf ├── export.html.php ├── functions.inc.php ├── guimodule.php ├── images │ ├── arrow_up_down.png │ ├── cog.png │ ├── core_add.png │ ├── core_delete.png │ ├── default-option.png │ ├── edit.png │ ├── email_edit.png │ ├── link.png │ ├── resultset_bottom.png │ ├── resultset_down.png │ ├── resultset_top.png │ ├── resultset_up.png │ ├── spinner.gif │ ├── telephone_delete.png │ ├── telephone_edit.png │ ├── telephone_key.png │ ├── user_add.png │ ├── user_delete.png │ ├── user_edit.png │ └── user_go.png ├── install.php ├── module.xml ├── page.advancedsettings.php ├── page.ampusers.php ├── page.dahdichandids.php ├── page.devices.php ├── page.did.php ├── page.extensions.php ├── page.routing.php ├── page.trunks.php ├── page.users.php └── sounds │ ├── agent-login.sln │ ├── agent-logoff.sln │ ├── exited-vm-will-be-transfered.sln │ ├── featurecode.sln │ ├── incoming-call-1-accept-2-decline.sln │ ├── incoming-call-no-longer-avail.sln │ ├── line-busy-transfer-menu.sln │ ├── please-enter-your-extension-then-press-pound.sln │ └── you-will-be-transfered-menu.sln ├── customappsreg ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── customappsreg.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── customappsreg.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── customappsreg.po ├── install.php ├── module.xml ├── page.customdests.php ├── page.customextens.php └── uninstall.php ├── customcontexts ├── .gitattributes ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── customcontexts.po │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── customcontexts.po │ ├── customcontexts.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── customcontexts.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── customcontexts.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── customcontexts.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── customcontexts.po ├── install.php ├── module.xml ├── page.customcontexts.php ├── page.customcontextsadmin.php └── uninstall.php ├── customerdb ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── customerdb.po │ ├── customerdb.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── customerdb.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── customerdb.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── customerdb.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── customerdb.po ├── install.php ├── module.xml ├── page.customerdb.php └── uninstall.sql ├── dahdiconfig ├── .gitattributes ├── LICENSE ├── README.md ├── ajax.html.php ├── assets │ ├── css │ │ └── main.css │ ├── images │ │ ├── add.png │ │ └── delete.png │ └── js │ │ ├── jquery.form.js │ │ ├── jquery.sortable.min.js │ │ └── main.js ├── bin │ └── issabelpbx_engine_hook_dahdiconfig ├── functions.inc.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── dahdiconfig.po │ ├── dahdiconfig.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dahdiconfig.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── dahdiconfig.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── dahdiconfig.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── dahdiconfig.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── dahdiconfig.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── dahdiconfig.po ├── includes │ ├── ajax.inc.php │ ├── dahdi_cards.class.php │ └── modules.reset ├── install.php ├── module.xml ├── modules │ └── sangoma.module ├── page.dahdi.php ├── uninstall.php └── views │ ├── dahdi_advanced_settings.php │ ├── dahdi_analog_hardware.php │ ├── dahdi_analog_settings.php │ ├── dahdi_analog_signalling_form.php │ ├── dahdi_digital_hardware.php │ ├── dahdi_digital_settings.php │ ├── dahdi_global_settings.php │ ├── dahdi_message_box.php │ ├── dahdi_modprobe_settings.php │ ├── dahdi_modules_settings.php │ └── dahdi_system_settings.php ├── dashboard ├── LICENSE ├── class.astinfo.php ├── class.average_rate_calculator.php ├── class.error.inc.php ├── class.procinfo.php ├── dashboard.css ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── dashboard.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── dashboard.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── dashboard.po ├── install.php ├── module.xml ├── page.index.php └── phpsysinfo │ ├── class.BSD.common.inc.php │ ├── class.Darwin.inc.php │ ├── class.FreeBSD.inc.php │ ├── class.Linux.inc.php │ ├── class.NetBSD.inc.php │ ├── class.OpenBSD.inc.php │ ├── class.parseProgs.inc.php │ ├── common_functions.php │ ├── distros.ini │ └── index.html ├── daynight ├── .gitattributes ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── daynight.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── daynight.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── daynight.po ├── images │ └── clock_link.png ├── install.php ├── module.xml ├── page.daynight.php └── uninstall.php ├── dialplaninjection ├── README.md ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dialplaninjection.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── dialplaninjection.po ├── install.php ├── install.sql ├── module.xml ├── page.dialplaninjection.php ├── titlelang.php └── uninstall.sql ├── dictate ├── LICENSE ├── bin │ └── audio-email.pl ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ ├── dictate.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── dictate.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── dictate.po ├── install.php ├── module.xml └── sounds │ ├── dictation-being-processed.sln │ ├── dictation-being-processed.wav │ ├── dictation-sent.sln │ ├── dictation-sent.wav │ └── enter-filename-short.sln ├── digium_phones ├── .gitattributes ├── Doxyfile ├── LICENSE ├── README.md ├── Services │ └── JSON.php ├── assets │ ├── css │ │ └── digium_phones.css │ └── js │ │ ├── digium_phone_queues.js │ │ └── phones.js ├── build_test_module ├── classes │ ├── digium_phones.php │ ├── digium_phones_firmware.php │ ├── digium_phones_firmware_conf.php │ ├── digium_phones_firmware_manager.php │ └── digium_phones_firmware_package.php ├── conf │ ├── digium_phones_contacts.php │ ├── res_digium_phone_applications.php │ ├── res_digium_phone_devices.php │ ├── res_digium_phone_firmware.php │ └── res_digium_phone_general.php ├── etc │ └── res_digium_phone.conf ├── functions.inc.php ├── i18n │ ├── digium_phones.pot │ ├── fa_IR │ │ └── LC_MESSAGES │ │ │ └── digium_phones.po │ └── fr_FR │ │ └── LC_MESSAGES │ │ └── digium_phones.po ├── images │ ├── resultset_first.png │ ├── resultset_last.png │ ├── resultset_left.png │ └── resultset_right.png ├── install.php ├── module.xml ├── page.digium_phones.php ├── uninstall.php └── views │ ├── digium_phones_alerts.php │ ├── digium_phones_application_custom.php │ ├── digium_phones_application_queues.php │ ├── digium_phones_application_status.php │ ├── digium_phones_applications.php │ ├── digium_phones_externallines.php │ ├── digium_phones_firmware.php │ ├── digium_phones_general_settings.php │ ├── digium_phones_logos.php │ ├── digium_phones_networks.php │ ├── digium_phones_phonebooks.php │ ├── digium_phones_phones.php │ ├── digium_phones_ringtones.php │ ├── rnav.php │ └── zonelist.html ├── directory ├── LICENSE ├── agi-bin │ ├── directory.agi │ └── directory.lib.php ├── assets │ └── js │ │ └── directory.js ├── functions.inc.php ├── i18n │ ├── directory.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── directory.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── directory.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── directory.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── directory.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── directory.po ├── install.php ├── module.xml ├── page.directory.php ├── sounds │ ├── cdir-matching-entries-continue.wav │ ├── cdir-matching-entries-or-pound.wav │ ├── cdir-please-enter-first-three.wav │ ├── cdir-sorry-no-entries.wav │ ├── cdir-there-are.wav │ ├── cdir-transferring-further-assistance.wav │ ├── cdir-welcome.wav │ └── fr │ │ ├── cdir-matching-entries-continue.wav │ │ ├── cdir-matching-entries-or-pound.wav │ │ ├── cdir-please-enter-first-three.wav │ │ ├── cdir-sorry-no-entries.wav │ │ ├── cdir-there-are.wav │ │ ├── cdir-transferring-further-assistance.wav │ │ └── cdir-welcome.wav └── uninstall.php ├── disa ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── disa.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── disa.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── disa.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── disa.po ├── install.php ├── module.xml ├── page.disa.php └── uninstall.sql ├── donotdisturb ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── donotdisturb.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── donotdisturb.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── donotdisturb.po ├── install.php └── module.xml ├── dundicheck ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── dundicheck.po │ ├── dundicheck.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dundicheck.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── dundicheck.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── dundicheck.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── dundicheck.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── dundicheck.po ├── module.xml └── page.dundicheck.php ├── dynamicfeatures ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── dynamicfeatures.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dynamicfeatures.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── dynamicfeatures.po ├── install.php ├── module.xml ├── page.dynamicfeatures.php └── uninstall.php ├── dynroute ├── CHANGES.txt ├── LICENSE ├── example.sql ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── dynroute.pot │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── dynroute.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── dynroute.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ └── dynroute.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── dynroute.po ├── install.php ├── module.xml ├── page.dynroute.php ├── test.agi ├── titlelang.php ├── uninstall.php └── update_i18n.sh ├── extensionsettings ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── extensionsettings.po │ ├── extensionsettings.pot │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── extensionsettings.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── extensionsettings.po ├── images │ ├── bullet.png │ └── bullet_checked.png ├── module.xml └── page.extensionsettings.php ├── fax ├── LICENSE ├── assets │ └── js │ │ └── fax.js ├── bin │ └── fax2mail.php ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── fax.po │ ├── fax.pot │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── fax.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── fax.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── fax.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── fax.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── fax.po ├── install.php ├── module.xml ├── page.fax.php └── uninstall.php ├── featurecodeadmin ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── featurecodeadmin.pot │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── featurecodeadmin.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── featurecodeadmin.po ├── module.xml └── page.featurecodeadmin.php ├── findmefollow ├── Findmefollow.class.php ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── findmefollow.pot │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── findmefollow.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── findmefollow.po ├── install.php ├── module.xml ├── page.findmefollow.php ├── sounds │ └── followme.sln ├── ucp │ ├── Findmefollow.class.php │ └── views │ │ └── settings.php └── uninstall.php ├── framework ├── .gitattributes ├── LICENSE ├── README.md ├── SQL │ ├── cdr_mysql_table.sql │ ├── cel_table.sql │ ├── newinstall.sql │ ├── newinstall.sqlite3.sql │ ├── update_release_46.sql │ └── upgradefromfpbx.db ├── amp_conf │ ├── agi-bin │ │ ├── phpagi-asmanager.php │ │ └── phpagi.php │ ├── astetc │ │ ├── cbmysql.conf │ │ ├── cdr_mysql.conf │ │ ├── chan_dahdi.conf.template │ │ ├── dnsmgr.conf │ │ ├── enum.conf │ │ ├── extensions_custom.conf.sample │ │ ├── indications.conf │ │ ├── issabelpbx_featurecodes.conf.template │ │ ├── issabelpbx_menu.conf.template │ │ ├── issabelpbx_module_admin.conf │ │ ├── manager.conf │ │ ├── manager_custom.conf.sample │ │ ├── manager_general_additional.conf │ │ ├── meetme.conf │ │ ├── modem.conf │ │ ├── modules.conf │ │ ├── modules_additional.conf │ │ ├── modules_custom.conf.sample │ │ ├── musiconhold.conf │ │ ├── phone.conf │ │ ├── phpagi.conf │ │ ├── privacy.conf │ │ ├── queues.conf │ │ ├── res_mysql.conf │ │ ├── res_parking.conf │ │ ├── res_parking_additional.conf │ │ ├── res_parking_custom.conf.sample │ │ ├── res_parking_custom_general.conf.sample │ │ ├── vm_email.inc │ │ ├── vm_general.inc │ │ ├── voicemail.conf.template │ │ └── zapata.conf.template │ ├── bin │ │ ├── archive_recordings │ │ ├── gen_amp_conf.php │ │ ├── generate_hints.php │ │ ├── issabelpbx-cron-scheduler.php │ │ ├── issabelpbx_engine │ │ ├── issabelpbx_setting │ │ ├── libissabelpbx.confgen.php │ │ ├── module_admin │ │ ├── retrieve_conf │ │ └── retrieve_parse_amportal_conf.pl │ ├── htdocs │ │ └── admin │ │ │ ├── .htaccess │ │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── animate.min.css │ │ │ │ ├── bulma-checkbox.css │ │ │ │ ├── bulma-switch.min.css │ │ │ │ ├── bulma-tooltip.min.css │ │ │ │ ├── bulma.min.css │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen.css │ │ │ │ ├── mainstyle-rtl.css │ │ │ │ ├── mainstyle.css │ │ │ │ ├── popover.css │ │ │ │ ├── progress-polyfill.css │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── unpoly.min.css │ │ │ ├── images │ │ │ │ ├── operator-panel.png │ │ │ │ ├── support.png │ │ │ │ ├── sys-admin.png │ │ │ │ └── user-control.png │ │ │ └── js │ │ │ │ ├── chosen.jquery.js │ │ │ │ ├── jquery-1.6.2.min.js │ │ │ │ ├── jquery-1.7.1.min.js │ │ │ │ ├── jquery-3.6.0.min.js │ │ │ │ ├── jquery-migrate-3.4.0.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.dirty.js │ │ │ │ ├── jquery.hotkeys.js │ │ │ │ ├── jquery.toggleval.3.0.js │ │ │ │ ├── loadingoverlay.js │ │ │ │ ├── menu.js │ │ │ │ ├── pbxlib.js │ │ │ │ ├── progress-polyfill.min.js │ │ │ │ ├── script.legacy.js │ │ │ │ ├── sweetalert2.min.js │ │ │ │ ├── tabber-minimized.js │ │ │ │ ├── unpoly.min.js │ │ │ │ └── views │ │ │ │ └── login.js │ │ │ ├── bootstrap.php │ │ │ ├── config.php │ │ │ ├── functions.inc.php │ │ │ ├── helpers │ │ │ ├── Email.php │ │ │ ├── Table.php │ │ │ ├── form_helper.php │ │ │ ├── html_helper.php │ │ │ └── issabelpbx_helpers.php │ │ │ ├── i18n │ │ │ ├── .htaccess │ │ │ ├── amp.pot │ │ │ ├── bg_BG │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── de_DE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── es_ES │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── fr_FR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── he_IL │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── hu_HU │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── it_IT │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── ja_JP │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── pt_BR │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── pt_PT │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── readme.txt │ │ │ ├── ro_RO │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── ru_RU │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ ├── sv_SE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ └── amp.po │ │ │ └── zh_CN │ │ │ │ └── LC_MESSAGES │ │ │ │ └── amp.po │ │ │ ├── images │ │ │ ├── bg.svg │ │ │ ├── blank.gif │ │ │ ├── br.svg │ │ │ ├── cancel.png │ │ │ ├── cn.svg │ │ │ ├── database_gear.png │ │ │ ├── de.svg │ │ │ ├── delete.gif │ │ │ ├── en.svg │ │ │ ├── es.svg │ │ │ ├── favicon.ico │ │ │ ├── fr.svg │ │ │ ├── hu.svg │ │ │ ├── il.svg │ │ │ ├── issabelpbx.png │ │ │ ├── issabelpbx_small.png │ │ │ ├── it.svg │ │ │ ├── jp.svg │ │ │ ├── pt.svg │ │ │ ├── ru.svg │ │ │ ├── scrolldown.gif │ │ │ ├── scrollup.gif │ │ │ ├── se.svg │ │ │ ├── tango.png │ │ │ └── trash.png │ │ │ ├── index.php │ │ │ ├── libraries │ │ │ ├── Cron.class.php │ │ │ ├── ampuser.class.php │ │ │ ├── components.class.php │ │ │ ├── cronmanager.class.php │ │ │ ├── cssmin.class.php │ │ │ ├── db_connect.php │ │ │ ├── extensions.class.php │ │ │ ├── featurecodes.class.php │ │ │ ├── featurecodes.functions.php │ │ │ ├── fwmsg.class.php │ │ │ ├── gettext.php │ │ │ ├── gettextinc.php │ │ │ ├── gui_auth.php │ │ │ ├── issabelpbx_DB.php │ │ │ ├── issabelpbx_DB_extends.php │ │ │ ├── issabelpbx_DB_static.php │ │ │ ├── issabelpbx_conf.class.php │ │ │ ├── legacy.functions.php │ │ │ ├── modgettext.class.php │ │ │ ├── module.functions.php │ │ │ ├── moduleHook.class.php │ │ │ ├── modulelist.class.php │ │ │ ├── notifications.class.php │ │ │ ├── pest.functions.php │ │ │ ├── pest │ │ │ │ ├── Pest.php │ │ │ │ ├── PestJSON.php │ │ │ │ └── PestXML.php │ │ │ ├── php-asmanager.php │ │ │ ├── php-upgrade.functions.php │ │ │ ├── php-upgrade.override.php │ │ │ ├── php-upgrade │ │ │ │ ├── ext │ │ │ │ │ ├── bcmath.php │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── archive │ │ │ │ │ │ │ ├── bcmath.old.php │ │ │ │ │ │ │ ├── pdo-2006-01-29.tar.gz │ │ │ │ │ │ │ ├── phprequest.php │ │ │ │ │ │ │ ├── xmlrpc.php │ │ │ │ │ │ │ └── xmlrpc.txt │ │ │ │ │ │ ├── fix_magic_quotes.php │ │ │ │ │ │ ├── header_errors.php │ │ │ │ │ │ ├── http_query.class.php │ │ │ │ │ │ ├── http_query.class.txt │ │ │ │ │ │ ├── input.README.pdf │ │ │ │ │ │ ├── input.php │ │ │ │ │ │ ├── is_utf8.php │ │ │ │ │ │ ├── php4_exceptions.php │ │ │ │ │ │ ├── php5_clone.php │ │ │ │ │ │ └── serialize.php │ │ │ │ │ ├── ctype.php │ │ │ │ │ ├── ftp.php │ │ │ │ │ ├── gettext.php │ │ │ │ │ ├── mime.php │ │ │ │ │ ├── nonstandard │ │ │ │ │ │ └── base16.php │ │ │ │ │ ├── pdo.pgsql.php │ │ │ │ │ ├── pdo.php │ │ │ │ │ ├── pdo.sqlite.php │ │ │ │ │ ├── php40.php │ │ │ │ │ ├── php40array.php │ │ │ │ │ ├── pspell.php │ │ │ │ │ ├── stubs │ │ │ │ │ │ ├── dba.php │ │ │ │ │ │ └── zlib.php │ │ │ │ │ ├── uncommon_functions.php │ │ │ │ │ └── xmlentities.php │ │ │ │ ├── upgrade.php │ │ │ │ └── version.18 │ │ │ ├── sql.functions.php │ │ │ ├── streams.php │ │ │ ├── usage_registry.functions.php │ │ │ ├── utility.functions.php │ │ │ ├── view.functions.php │ │ │ ├── voicemail.function.php │ │ │ └── xml2Array.class.php │ │ │ ├── module-builtin.xml │ │ │ ├── page.modules.php │ │ │ └── views │ │ │ ├── .htaccess │ │ │ ├── bad_refferer.php │ │ │ ├── beta_notice.php │ │ │ ├── footer.php │ │ │ ├── footer_content.php │ │ │ ├── header.php │ │ │ ├── issabelpbx.php │ │ │ ├── login.php │ │ │ ├── menu.php │ │ │ ├── menuitem_disabled.php │ │ │ ├── noaccess.php │ │ │ ├── obe.php │ │ │ ├── panel.php │ │ │ ├── popover_js.php │ │ │ ├── reports.php │ │ │ ├── welcome.php │ │ │ └── welcome_nomanager.php │ ├── sbin │ │ └── amportal │ └── sounds │ │ ├── dir-intro-fn-oper.gsm │ │ ├── dir-intro-fnln-oper.gsm │ │ ├── dir-intro-fnln.gsm │ │ └── dir-intro-oper.gsm ├── amportal.conf ├── apply_conf.sh ├── asterisk.conf ├── initial_settings.csv ├── install.php ├── install_amp ├── libissabelpbx.install.php ├── module.xml ├── sqlite.readme ├── start_asterisk └── upgrades │ ├── 2.10.1.md5 │ ├── 2.10.1 │ └── migration.php │ ├── 2.11.0.47 │ └── migration.php │ ├── 2.11.0.49 │ └── migration.php │ ├── 2.11.0.md5 │ ├── 2.11.0 │ └── migration.php │ └── 2.12.0.0 │ └── migration.php ├── fw_langpacks ├── .gitattributes ├── LICENSE ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── fw_langpacks.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── fw_langpacks.po │ ├── fw_langpacks.pot │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── fw_langpacks.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── fw_langpacks.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── fw_langpacks.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── fw_langpacks.po ├── install.php └── module.xml ├── hotelwakeup ├── README ├── agi-bin │ ├── wake.inc.php │ ├── wakeconfirm.php │ └── wakeupphp ├── assets │ └── js │ │ └── jquery.alphanum.js ├── functions.inc.php ├── hotelwakeup.css ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── hotelwakeup.po │ ├── hotelwakeup.pot │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── hotelwakeup.po ├── install.php ├── module.xml ├── page.hotelwakeup.php └── uninstall.php ├── iaxsettings ├── LICENSE ├── assets │ ├── css │ │ └── iaxsettings.css │ ├── images │ │ └── arrow_up_down.png │ └── js │ │ ├── Sortable.min.js │ │ └── iaxsettings.js ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── iaxsettings.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── iaxsettings.po │ ├── iaxsettings.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── iaxsettings.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── iaxsettings.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── iaxsettings.po ├── install.php ├── module.xml ├── page.iaxsettings.php └── uninstall.php ├── infoservices ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── infoservices.pot │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── infoservices.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── infoservices.po ├── install.php └── module.xml ├── inventorydb ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── inventorydb.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── inventorydb.po │ ├── inventorydb.pot │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── inventorydb.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── inventorydb.po ├── install.php ├── install.sql ├── module.xml ├── page.inventorydb.php └── uninstall.sql ├── issabelPBX.spec ├── ivr ├── LICENSE ├── assets │ ├── images │ │ ├── add.png │ │ └── queue_link.png │ └── js │ │ └── ivr.js ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── ivr.pot │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── ivr.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── ivr.po ├── install.php ├── module.xml ├── page.ivr.php ├── sounds │ └── en │ │ ├── no-valid-responce-pls-try-again.wav │ │ └── no-valid-responce-transfering.wav ├── uninstall.php └── views │ ├── entries.php │ └── rnav.php ├── languages ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── languages.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── languages.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── languages.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── languages.po ├── install.php ├── module.xml ├── page.languages.php └── uninstall.php ├── logfiles ├── LICENSE ├── assets │ ├── css │ │ └── logfiles.css │ ├── images │ │ └── add.png │ └── js │ │ └── views │ │ ├── logs.js │ │ └── settings.js ├── etc │ └── logger.conf ├── functions.inc.php ├── header.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── logfiles.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── logfiles.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── logfiles.po ├── install.php ├── module.xml ├── page.logfiles.php ├── page.logfiles_settings.php ├── titlelang.php ├── uninstall.php └── views │ ├── logs.php │ └── settings.php ├── manager ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── manager.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── manager.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── manager.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── manager.po ├── install.php ├── module.xml ├── page.manager.php └── uninstall.sql ├── managersettings ├── LICENSE ├── assets │ └── css │ │ └── managersettings.css ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── managersettings.po │ ├── managersettings.pot │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── managersettings.po ├── install.php ├── module.xml ├── page.managersettings.php └── uninstall.php ├── miscapps ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── miscapps.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── miscapps.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── miscapps.po ├── install.php ├── module.xml ├── page.miscapps.php └── uninstall.php ├── miscdests ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── miscdests.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── miscdests.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── miscdests.po ├── install.php ├── install.sql ├── module.xml ├── page.miscdests.php └── uninstall.sql ├── motif ├── .gitattributes ├── LICENSE ├── README.md ├── functions.inc.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── motif.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── motif.po │ └── motif.pot ├── install.php ├── module.xml ├── page.motif.php ├── uninstall.php └── views │ ├── edit.php │ └── main.php ├── music ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── music.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── music.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── music.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── music.po ├── install.php ├── module.xml └── page.music.php ├── outroutemsg ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── outroutemsg.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── outroutemsg.po │ ├── outroutemsg.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── outroutemsg.po │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── outroutemsg.po ├── install.php ├── module.xml ├── page.outroutemsg.php └── uninstall.php ├── paging ├── LICENSE ├── agi-bin │ └── page.agi ├── assets │ ├── css │ │ └── paging.css │ └── js │ │ ├── Sortable.min.js │ │ └── paging.js ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── paging.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── paging.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── paging.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── paging.po ├── install.php ├── module.xml ├── page.paging.php ├── sounds │ └── intercom.wav ├── uninstall.php └── views │ ├── overview.php │ ├── page_group.php │ ├── rnav.php │ └── settings.php ├── parking ├── LICENSE ├── agi-bin │ ├── parkfetch.agi │ └── parkuser.php ├── assets │ ├── css │ │ └── parking.css │ └── js │ │ ├── jquery.alphanum.js │ │ └── park.js ├── functions.inc.php ├── functions.inc │ ├── dialplan.php │ ├── geters_seters.php │ └── registries.php ├── guimodule.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── parking.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── parking.po │ ├── parking.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── parking.po │ └── ru_RU │ │ └── LC_MESSAGES │ │ └── parking.po ├── install.php ├── module.xml ├── page.parking.php ├── titlelang.php ├── uninstall.php └── views │ ├── header.php │ ├── lot.php │ └── overview.php ├── pbdirectory ├── .gitattributes ├── LICENSE ├── README.md ├── agi-bin │ └── pbdirectory ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── fa_IR │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── pbdirectory.pot │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── pbdirectory.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── pbdirectory.po ├── install.php ├── module.xml └── sounds │ ├── en │ ├── pbdirectory-first-three-letters-entry.sln │ ├── pbdirectory-if-correct-press.sln │ ├── pbdirectory-if-incorrect-press.sln │ └── pbdirectory-welcome-to-phonebook.sln │ ├── en_GB │ ├── pbdirectory-first-three-letters-entry.sln │ ├── pbdirectory-first-three-letters-entry.sln16 │ ├── pbdirectory-if-correct-press.sln │ ├── pbdirectory-if-correct-press.sln16 │ ├── pbdirectory-if-incorrect-press.sln │ ├── pbdirectory-if-incorrect-press.sln16 │ ├── pbdirectory-welcome-to-phonebook.sln │ └── pbdirectory-welcome-to-phonebook.sln16 │ ├── es │ ├── pbdirectory-first-three-letters-entry.wav │ ├── pbdirectory-if-correct-press.wav │ ├── pbdirectory-if-incorrect-press.wav │ └── pbdirectory-welcome-to-phonebook.wav │ ├── fr │ ├── pbdirectory-first-three-letters-entry.sln │ ├── pbdirectory-first-three-letters-entry.sln16 │ ├── pbdirectory-if-correct-press.sln │ ├── pbdirectory-if-correct-press.sln16 │ ├── pbdirectory-if-incorrect-press.sln │ ├── pbdirectory-if-incorrect-press.sln16 │ ├── pbdirectory-welcome-to-phonebook.sln │ └── pbdirectory-welcome-to-phonebook.sln16 │ ├── it │ ├── pbdirectory-first-three-letters-entry.sln │ ├── pbdirectory-first-three-letters-entry.sln16 │ ├── pbdirectory-if-correct-press.sln │ ├── pbdirectory-if-correct-press.sln16 │ ├── pbdirectory-if-incorrect-press.sln │ ├── pbdirectory-if-incorrect-press.sln16 │ ├── pbdirectory-welcome-to-phonebook.sln │ └── pbdirectory-welcome-to-phonebook.sln16 │ └── ja │ ├── pbdirectory-first-three-letters-entry.sln │ ├── pbdirectory-if-correct-press.sln │ ├── pbdirectory-if-incorrect-press.sln │ └── pbdirectory-welcome-to-phonebook.sln ├── phonebook ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── phonebook.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── phonebook.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── phonebook.po ├── module.xml └── page.phonebook.php ├── phpagiconf ├── .gitattributes ├── LICENSE ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── phpagiconf.pot │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── phpagiconf.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── phpagiconf.po ├── install.php ├── module.xml ├── page.phpagiconf.php └── uninstall.sql ├── phpinfo ├── assets │ └── css │ │ └── phpinfo.css ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── phpinfo.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── phpinfo.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── phpinfo.po │ ├── phpinfo.pot │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── phpinfo.po ├── module.xml └── page.phpinfo.php ├── pinsets ├── .gitattributes ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── pinsets.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── pinsets.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── pinsets.po ├── install.php ├── module.xml ├── page.pinsets.php └── uninstall.php ├── printextensions ├── .gitattributes ├── LICENSE ├── README.md ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── printextensions.pot │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── printextensions.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── printextensions.po ├── module.xml └── page.printextensions.php ├── queuemetrics ├── .gitattributes ├── LICENSE ├── functions.inc.php ├── i18n │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── queuemetrics.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── queuemetrics.po │ └── queuemetrics.pot ├── install.php ├── module.xml ├── page.queuemetrics.php └── uninstall.php ├── queueprio ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── queueprio.pot │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── queueprio.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── queueprio.po ├── install.php ├── module.xml ├── page.queueprio.php └── uninstall.php ├── queues ├── .gitattributes ├── LICENSE ├── agi-bin │ └── queue_devstate.agi ├── assets │ ├── css │ │ └── queues.css │ └── js │ │ └── queues.js ├── bin │ ├── generate_queue_hints.php │ └── queue_reset_stats.php ├── functions.inc.php ├── functions.inc │ ├── cron.php │ ├── destination_registry.php │ ├── dialplan.php │ ├── geters_seters.php │ ├── hook_core.php │ ├── hook_ivr.php │ └── queue_conf.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── queues.pot │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── queues.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── queues.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── queues.po ├── install.php ├── module.xml ├── page.queues.php ├── uninstall.php └── views │ └── cron.php ├── recordings ├── LICENSE ├── assets │ ├── css │ │ ├── recordings.css │ │ └── webrecord.css │ ├── images │ │ ├── application_link.png │ │ ├── chosen-sprite.png │ │ ├── play.png │ │ ├── rec_hourglass.png │ │ └── sound_delete.png │ └── js │ │ ├── recorder.js │ │ ├── recordings.js │ │ └── webrecord.js ├── audio.php ├── crypt.php ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── recordings.pot │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── recordings.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── recordings.po ├── install.php ├── module.xml ├── page.recordings.php ├── popup.php ├── titlelang.php └── uninstall.php ├── restart ├── .gitattributes ├── LICENSE ├── README.md ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── restart.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── restart.po │ ├── restart.pot │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── restart.po ├── install.php ├── module.xml └── page.restart.php ├── ringgroups ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── ringgroups.pot │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── ringgroups.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── ringgroups.po ├── install.php ├── module.xml ├── page.ringgroups.php └── uninstall.sql ├── setcid ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── setcid.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── setcid.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── setcid.po │ └── setcid.pot ├── install.php ├── module.xml ├── page.setcid.php └── uninstall.php ├── sipsettings ├── LICENSE ├── assets │ ├── css │ │ └── sipsettings.css │ ├── images │ │ └── arrow_up_down.png │ └── js │ │ ├── Sortable.min.js │ │ └── sipsettings.js ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── sipsettings.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── sipsettings.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── sipsettings.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── sipsettings.po │ ├── sipsettings.pot │ └── sv_SE │ │ └── LC_MESSAGES │ │ └── sipsettings.po ├── install.php ├── module.xml ├── natget.html.php ├── page.pjsipsettings.php ├── page.sipsettings.php └── uninstall.php ├── speeddial ├── .gitattributes ├── LICENSE ├── README.md ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── fa_IR │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ ├── speeddial.pot │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── speeddial.po │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── speeddial.po ├── install.php ├── module.xml └── sounds │ ├── en │ ├── speed-enterlocation.gsm │ ├── speed-enternumber.gsm │ ├── to-change.gsm │ └── to-enter-a-diff.gsm │ ├── en_GB │ ├── speed-enterlocation-hash.sln │ ├── speed-enterlocation-hash.sln16 │ ├── speed-enterlocation.sln │ ├── speed-enterlocation.sln16 │ ├── speed-enternumber-hash.sln │ ├── speed-enternumber-hash.sln16 │ ├── speed-enternumber.sln │ ├── speed-enternumber.sln16 │ ├── to-change.sln │ ├── to-change.sln16 │ ├── to-enter-a-diff.sln │ └── to-enter-a-diff.sln16 │ ├── es │ ├── speed-enterlocation.wav │ ├── speed-enternumber.wav │ ├── to-change.wav │ └── to-enter-a-diff.wav │ ├── fr │ ├── speed-enterlocation.sln │ ├── speed-enterlocation.sln16 │ ├── speed-enternumber.sln │ ├── speed-enternumber.sln16 │ ├── to-change.sln │ ├── to-change.sln16 │ ├── to-enter-a-diff.sln │ └── to-enter-a-diff.sln16 │ └── it │ ├── speed-enterlocation.sln │ ├── speed-enterlocation.sln16 │ ├── speed-enternumber.sln │ ├── speed-enternumber.sln16 │ ├── to-change.sln │ ├── to-change.sln16 │ ├── to-enter-a-diff.sln │ └── to-enter-a-diff.sln16 ├── superfecta ├── .gitattributes ├── LICENSE ├── agi │ ├── phpagi-asmanager.php │ ├── phpagi.php │ └── superfecta.agi ├── ajax.html.php ├── assets │ ├── css │ │ └── superfecta.css │ ├── images │ │ ├── bottom.gif │ │ ├── copy.gif │ │ ├── delete.gif │ │ ├── loading.gif │ │ ├── logo.gif │ │ ├── off.gif │ │ ├── on.gif │ │ ├── on_off.gif │ │ ├── revert.gif │ │ ├── top.gif │ │ └── update.png │ └── js │ │ ├── Sortable.min.js │ │ ├── jquery.alphanum.js │ │ ├── jquery.form.js │ │ └── superfecta.js ├── callerid.html.php ├── disclaimer.html ├── functions.inc.php ├── i18n │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── superfecta.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── superfecta.po │ ├── superfecta.pot │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── superfecta.po ├── includes │ ├── JSON │ │ └── JSON.php │ ├── ajax.inc.php │ ├── callerid.php │ ├── config.php │ ├── oauth-php │ │ ├── LICENSE │ │ ├── README │ │ ├── example │ │ │ ├── client │ │ │ │ ├── googledocs.php │ │ │ │ ├── twolegged.php │ │ │ │ ├── twoleggedtest.php │ │ │ │ └── twoleggedtwitter.php │ │ │ └── server │ │ │ │ ├── INSTALL │ │ │ │ ├── core │ │ │ │ ├── init.php │ │ │ │ └── templates │ │ │ │ │ ├── inc │ │ │ │ │ ├── footer.tpl │ │ │ │ │ └── header.tpl │ │ │ │ │ ├── index.tpl │ │ │ │ │ ├── logon.tpl │ │ │ │ │ └── register.tpl │ │ │ │ └── www │ │ │ │ ├── hello.php │ │ │ │ ├── index.php │ │ │ │ ├── logon.php │ │ │ │ ├── oauth.php │ │ │ │ ├── register.php │ │ │ │ └── services.xrds.php │ │ ├── library │ │ │ ├── OAuthDiscovery.php │ │ │ ├── OAuthException2.php │ │ │ ├── OAuthRequest.php │ │ │ ├── OAuthRequestLogger.php │ │ │ ├── OAuthRequestSigner.php │ │ │ ├── OAuthRequestVerifier.php │ │ │ ├── OAuthRequester.php │ │ │ ├── OAuthServer.php │ │ │ ├── OAuthSession.php │ │ │ ├── OAuthStore.php │ │ │ ├── body │ │ │ │ ├── OAuthBodyContentDisposition.php │ │ │ │ └── OAuthBodyMultipartFormdata.php │ │ │ ├── discovery │ │ │ │ ├── xrds_parse.php │ │ │ │ └── xrds_parse.txt │ │ │ ├── session │ │ │ │ ├── OAuthSessionAbstract.class.php │ │ │ │ └── OAuthSessionSESSION.php │ │ │ ├── signature_method │ │ │ │ ├── OAuthSignatureMethod.class.php │ │ │ │ ├── OAuthSignatureMethod_HMAC_SHA1.php │ │ │ │ ├── OAuthSignatureMethod_MD5.php │ │ │ │ ├── OAuthSignatureMethod_PLAINTEXT.php │ │ │ │ └── OAuthSignatureMethod_RSA_SHA1.php │ │ │ └── store │ │ │ │ ├── OAuthStore2Leg.php │ │ │ │ ├── OAuthStoreAbstract.class.php │ │ │ │ ├── OAuthStoreAnyMeta.php │ │ │ │ ├── OAuthStoreMySQL.php │ │ │ │ ├── OAuthStoreMySQLi.php │ │ │ │ ├── OAuthStoreOracle.php │ │ │ │ ├── OAuthStorePDO.php │ │ │ │ ├── OAuthStorePostgreSQL.php │ │ │ │ ├── OAuthStoreSQL.php │ │ │ │ ├── OAuthStoreSession.php │ │ │ │ ├── mysql │ │ │ │ ├── install.php │ │ │ │ └── mysql.sql │ │ │ │ ├── oracle │ │ │ │ ├── OracleDB │ │ │ │ │ ├── 1_Tables │ │ │ │ │ │ └── TABLES.sql │ │ │ │ │ ├── 2_Sequences │ │ │ │ │ │ └── SEQUENCES.sql │ │ │ │ │ └── 3_Procedures │ │ │ │ │ │ ├── SP_ADD_CONSUMER_REQUEST_TOKEN.prc │ │ │ │ │ │ ├── SP_ADD_LOG.prc │ │ │ │ │ │ ├── SP_ADD_SERVER_TOKEN.prc │ │ │ │ │ │ ├── SP_AUTH_CONSUMER_REQ_TOKEN.prc │ │ │ │ │ │ ├── SP_CHECK_SERVER_NONCE.prc │ │ │ │ │ │ ├── SP_CONSUMER_STATIC_SAVE.prc │ │ │ │ │ │ ├── SP_COUNT_CONSUMER_ACCESS_TOKEN.prc │ │ │ │ │ │ ├── SP_COUNT_SERVICE_TOKENS.prc │ │ │ │ │ │ ├── SP_DELETE_CONSUMER.prc │ │ │ │ │ │ ├── SP_DELETE_SERVER.prc │ │ │ │ │ │ ├── SP_DELETE_SERVER_TOKEN.prc │ │ │ │ │ │ ├── SP_DEL_CONSUMER_ACCESS_TOKEN.prc │ │ │ │ │ │ ├── SP_DEL_CONSUMER_REQUEST_TOKEN.prc │ │ │ │ │ │ ├── SP_EXCH_CONS_REQ_FOR_ACC_TOKEN.prc │ │ │ │ │ │ ├── SP_GET_CONSUMER.prc │ │ │ │ │ │ ├── SP_GET_CONSUMER_ACCESS_TOKEN.prc │ │ │ │ │ │ ├── SP_GET_CONSUMER_REQUEST_TOKEN.prc │ │ │ │ │ │ ├── SP_GET_CONSUMER_STATIC_SELECT.prc │ │ │ │ │ │ ├── SP_GET_SECRETS_FOR_SIGNATURE.prc │ │ │ │ │ │ ├── SP_GET_SECRETS_FOR_VERIFY.prc │ │ │ │ │ │ ├── SP_GET_SERVER.prc │ │ │ │ │ │ ├── SP_GET_SERVER_FOR_URI.prc │ │ │ │ │ │ ├── SP_GET_SERVER_TOKEN.prc │ │ │ │ │ │ ├── SP_GET_SERVER_TOKEN_SECRETS.prc │ │ │ │ │ │ ├── SP_LIST_CONSUMERS.prc │ │ │ │ │ │ ├── SP_LIST_CONSUMER_TOKENS.prc │ │ │ │ │ │ ├── SP_LIST_LOG.prc │ │ │ │ │ │ ├── SP_LIST_SERVERS.prc │ │ │ │ │ │ ├── SP_LIST_SERVER_TOKENS.prc │ │ │ │ │ │ ├── SP_SET_CONSUMER_ACC_TOKEN_TTL.prc │ │ │ │ │ │ ├── SP_SET_SERVER_TOKEN_TTL.prc │ │ │ │ │ │ ├── SP_UPDATE_CONSUMER.prc │ │ │ │ │ │ └── SP_UPDATE_SERVER.prc │ │ │ │ └── install.php │ │ │ │ └── postgresql │ │ │ │ └── pgsql.sql │ │ └── test │ │ │ ├── discovery │ │ │ ├── xrds-fireeagle.xrds │ │ │ ├── xrds-getsatisfaction.xrds │ │ │ └── xrds-magnolia.xrds │ │ │ └── oauth_test.php │ ├── pear │ │ └── Net │ │ │ ├── Growl.php │ │ │ └── Growl │ │ │ ├── Application.php │ │ │ ├── Autoload.php │ │ │ ├── Exception.php │ │ │ ├── Gntp.php │ │ │ ├── GntpMock.php │ │ │ ├── Response.php │ │ │ └── Udp.php │ ├── processors │ │ ├── superfecta_multi.php │ │ └── superfecta_single.php │ ├── rain.tpl.class.php │ └── superfecta_base.php ├── install.php ├── module.xml ├── page.superfecta.php ├── sources.php ├── sources │ ├── source-Abandon_lookup.module │ ├── source-Asteridex.module │ ├── source-Asterisk_Phonebook.module │ ├── source-BulkCNAM.module │ ├── source-CNAM_RF.module │ ├── source-CallWithUs.module │ ├── source-CallerID_Service.module │ ├── source-Can411.module │ ├── source-CidnameCom.module │ ├── source-ConnectWise.module │ ├── source-DeTeMedien_DE.module │ ├── source-EnumQuery.module │ ├── source-FOP2_Phonebook.module │ ├── source-GevondenCC_NL.module │ ├── source-GlipMe.module │ ├── source-Herold_Austria.module │ ├── source-Infobel.module │ ├── source-IssabelPBX_User_Mgr.module │ ├── source-Klicktel_DE.module │ ├── source-LDAP.module │ ├── source-LocalTel_CH.module │ ├── source-NextCaller.module │ ├── source-Open79XX.module │ ├── source-OpenCNAM.module │ ├── source-OpenEMR.module │ ├── source-Paginasblancas_AR.module │ ├── source-PhoneSpamFilter.module │ ├── source-PhoneSpamFilter_UK.module │ ├── source-Regular_Expressions_1.module │ ├── source-ReverseAustralia_AU.module │ ├── source-ReversePhoneBooks_UK.module │ ├── source-Reversephones_AU.module │ ├── source-SE_118100_HE.module │ ├── source-SE_118700_HE.module │ ├── source-SE_clearsearch_HE.module │ ├── source-SE_eniro_HE.module │ ├── source-SE_missatsamtal_HE.module │ ├── source-SE_vemringde_HE.module │ ├── source-SFDatabase.module │ ├── source-Say_No_To_0870_UK.module │ ├── source-Send_to_Dreambox.module │ ├── source-Send_to_Growl.module │ ├── source-Send_to_MythTV.module │ ├── source-Send_to_NeutrinoHD.module │ ├── source-Send_to_NotifyMyAndroid.module │ ├── source-Send_to_PushBullet.module │ ├── source-Send_to_Soundbridge.module │ ├── source-Send_to_Squeezebox_Server.module │ ├── source-Send_to_URL.module │ ├── source-Send_to_Winunciator.module │ ├── source-Send_to_XBMC.module │ ├── source-Send_to_YAC.module │ ├── source-Send_to_email.module │ ├── source-SugarCRM.module │ ├── source-Superfecta_Cache.module │ ├── source-TAB_Reloaded.module │ ├── source-Telco_Data.module │ ├── source-Telepest_UK.module │ ├── source-Theaddressbook.module │ ├── source-Trunk_Provided.module │ ├── source-UKPhoneInfo_UK.module │ ├── source-UK_0870_me.module │ ├── source-VoIPCNAM.module │ ├── source-Who_Called.module │ └── source-iAddressBook.module ├── uninstall.php └── views │ ├── footer.html │ ├── header.html │ ├── main.html │ ├── sources.html │ └── style.css ├── tgzassets └── moh │ ├── macroform-cold_day.wav │ ├── macroform-robot_dity.wav │ ├── macroform-the_simplicity.wav │ ├── manolo_camp-morning_coffee.wav │ └── reno_project-system.wav ├── timeconditions ├── .gitattributes ├── LICENSE ├── bin │ └── schedtc.php ├── countries.csv ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── timeconditions.po │ ├── timeconditions.pot │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── timeconditions.po ├── images │ ├── time_edit.png │ └── time_link.png ├── install.php ├── module.xml ├── page.timeconditions.php ├── page.timegroups.php └── uninstall.php ├── trunkbalance ├── README.md ├── agi-bin │ ├── sqltrunkbal.php │ ├── tbtoggle.php │ └── trunkbalance.php ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── trunkbalance.po │ └── pt_BR │ │ └── LC_MESSAGES │ │ └── trunkbalance.po ├── install.php ├── module.xml ├── page.trunkbalance.php ├── titlelang.php └── uninstall.php ├── tts ├── LICENSE ├── agi-bin │ ├── azuretts.php │ ├── elevenlabstts.php │ ├── googletts.pl │ ├── googlewave.php │ ├── issabel-tts.agi │ └── piper.php ├── assets │ ├── css │ │ ├── codemirror.css │ │ ├── lint.css │ │ └── mdn-like.css │ └── js │ │ ├── 0codemirror.js │ │ ├── active-line.js │ │ ├── javascript.js │ │ ├── json-lint.js │ │ └── zdone.js ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── tts.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── tts.po │ └── tts.pot ├── install.php ├── module.xml ├── page.tts.php ├── page.ttsadmin.php ├── titlelang.php └── uninstall.php ├── userman ├── .gitattributes ├── BMO.class.php ├── DB_Helper.class.php ├── LICENSE ├── Userman.class.php ├── assets │ ├── css │ │ └── userman.css │ └── js │ │ └── userman.js ├── functions.inc.php ├── functions.inc │ ├── auth │ │ └── issabelpbx.php │ ├── functions.php │ └── guihooks.php ├── i18n │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── userman.po │ ├── en_US │ │ └── LC_MESSAGES │ │ │ └── userman.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── userman.po │ └── userman.pot ├── install.php ├── module.xml.disabled ├── page.userman.php ├── uninstall.php └── views │ ├── emails │ └── welcome_text.tpl │ ├── general.php │ ├── rnav.php │ ├── users.php │ └── welcome.php ├── vmblast ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── vmblast.po │ ├── vmblast.pot │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── vmblast.po ├── install.php ├── install.sql ├── module.xml ├── page.vmblast.php ├── titlelang.php └── uninstall.sql ├── voicemail ├── .gitattributes ├── LICENSE ├── assets │ ├── css │ │ └── voicemail.css │ └── js │ │ └── voicemail.js ├── functions.inc.php ├── i18n │ ├── bg_BG │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── it_IT │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── voicemail.po │ ├── voicemail.pot │ └── zh_CN │ │ └── LC_MESSAGES │ │ └── voicemail.po ├── install.php ├── module.xml ├── page.voicemail.php └── views │ ├── dialplan.php │ ├── header.php │ ├── nav.php │ ├── settings.php │ ├── tz.php │ ├── usage.php │ └── usage_system.php ├── weakpasswords ├── LICENSE ├── functions.inc.php ├── i18n │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── weakpasswords.po │ ├── he_IL │ │ └── LC_MESSAGES │ │ │ └── weakpasswords.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── weakpasswords.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── weakpasswords.po │ ├── sv_SE │ │ └── LC_MESSAGES │ │ │ └── weakpasswords.po │ └── weakpasswords.pot ├── module.xml ├── page.weakpasswords.php └── uninstall.php └── writequeuelog ├── LICENSE ├── functions.inc.php ├── guimodule.php ├── i18n ├── es_ES │ └── LC_MESSAGES │ │ └── writequeuelog.po ├── pt_BR │ └── LC_MESSAGES │ │ └── writequeuelog.po └── writequeuelog.pot ├── install.php ├── module.xml ├── page.writequeuelog.php ├── titlelang.php └── uninstall.php /.github/workflows/el8-rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/.github/workflows/el8-rpm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.mo 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/README.md -------------------------------------------------------------------------------- /accountcodepreserve/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/accountcodepreserve/functions.inc.php -------------------------------------------------------------------------------- /accountcodepreserve/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/accountcodepreserve/module.xml -------------------------------------------------------------------------------- /announcement/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/LICENSE -------------------------------------------------------------------------------- /announcement/agi-bin/picotts.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/agi-bin/picotts.agi -------------------------------------------------------------------------------- /announcement/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/functions.inc.php -------------------------------------------------------------------------------- /announcement/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/guimodule.php -------------------------------------------------------------------------------- /announcement/i18n/announcement.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/i18n/announcement.pot -------------------------------------------------------------------------------- /announcement/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/install.php -------------------------------------------------------------------------------- /announcement/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/module.xml -------------------------------------------------------------------------------- /announcement/page.announcement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/page.announcement.php -------------------------------------------------------------------------------- /announcement/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/announcement/uninstall.php -------------------------------------------------------------------------------- /asterisk-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asterisk-cli/LICENSE -------------------------------------------------------------------------------- /asterisk-cli/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asterisk-cli/functions.inc.php -------------------------------------------------------------------------------- /asterisk-cli/i18n/asterisk-cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asterisk-cli/i18n/asterisk-cli.pot -------------------------------------------------------------------------------- /asterisk-cli/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asterisk-cli/module.xml -------------------------------------------------------------------------------- /asterisk-cli/page.cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asterisk-cli/page.cli.php -------------------------------------------------------------------------------- /asteriskinfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asteriskinfo/LICENSE -------------------------------------------------------------------------------- /asteriskinfo/asteriskinfo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asteriskinfo/asteriskinfo.css -------------------------------------------------------------------------------- /asteriskinfo/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asteriskinfo/functions.inc.php -------------------------------------------------------------------------------- /asteriskinfo/i18n/asteriskinfo.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asteriskinfo/i18n/asteriskinfo.pot -------------------------------------------------------------------------------- /asteriskinfo/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asteriskinfo/module.xml -------------------------------------------------------------------------------- /asteriskinfo/page.asteriskinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asteriskinfo/page.asteriskinfo.php -------------------------------------------------------------------------------- /asternicivr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/LICENSE -------------------------------------------------------------------------------- /asternicivr/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/functions.inc.php -------------------------------------------------------------------------------- /asternicivr/i18n/asternicivr.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/i18n/asternicivr.pot -------------------------------------------------------------------------------- /asternicivr/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/install.php -------------------------------------------------------------------------------- /asternicivr/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/module.xml -------------------------------------------------------------------------------- /asternicivr/page.asternic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/page.asternic.php -------------------------------------------------------------------------------- /asternicivr/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/asternicivr/uninstall.php -------------------------------------------------------------------------------- /backup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/LICENSE -------------------------------------------------------------------------------- /backup/assets/css/backup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/css/backup.css -------------------------------------------------------------------------------- /backup/assets/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/images/add.png -------------------------------------------------------------------------------- /backup/assets/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/images/move.png -------------------------------------------------------------------------------- /backup/assets/js/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/js/Sortable.min.js -------------------------------------------------------------------------------- /backup/assets/js/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/js/backup.js -------------------------------------------------------------------------------- /backup/assets/js/views/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/js/views/backup.js -------------------------------------------------------------------------------- /backup/assets/js/views/restore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/js/views/restore.js -------------------------------------------------------------------------------- /backup/assets/js/views/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/assets/js/views/templates.js -------------------------------------------------------------------------------- /backup/bin/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/bin/backup.php -------------------------------------------------------------------------------- /backup/bin/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/bin/restore.php -------------------------------------------------------------------------------- /backup/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/functions.inc.php -------------------------------------------------------------------------------- /backup/functions.inc/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/functions.inc/backup.php -------------------------------------------------------------------------------- /backup/functions.inc/class.backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/functions.inc/class.backup.php -------------------------------------------------------------------------------- /backup/functions.inc/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/functions.inc/restore.php -------------------------------------------------------------------------------- /backup/functions.inc/servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/functions.inc/servers.php -------------------------------------------------------------------------------- /backup/functions.inc/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/functions.inc/templates.php -------------------------------------------------------------------------------- /backup/i18n/backup.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/i18n/backup.pot -------------------------------------------------------------------------------- /backup/i18n/pl/LC_MESSAGES/backup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/i18n/pl/LC_MESSAGES/backup.po -------------------------------------------------------------------------------- /backup/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/install.php -------------------------------------------------------------------------------- /backup/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/module.xml -------------------------------------------------------------------------------- /backup/page.backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/page.backup.php -------------------------------------------------------------------------------- /backup/page.backup_restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/page.backup_restore.php -------------------------------------------------------------------------------- /backup/page.backup_servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/page.backup_servers.php -------------------------------------------------------------------------------- /backup/page.backup_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/page.backup_templates.php -------------------------------------------------------------------------------- /backup/pt_BR/LC_MESSAGES/backup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/pt_BR/LC_MESSAGES/backup.po -------------------------------------------------------------------------------- /backup/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/uninstall.php -------------------------------------------------------------------------------- /backup/views/backup/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/backup/backup.php -------------------------------------------------------------------------------- /backup/views/backup/backups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/backup/backups.php -------------------------------------------------------------------------------- /backup/views/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/cron.php -------------------------------------------------------------------------------- /backup/views/item_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/item_table.php -------------------------------------------------------------------------------- /backup/views/restore/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/restore/restore.php -------------------------------------------------------------------------------- /backup/views/rnav/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/rnav/backup.php -------------------------------------------------------------------------------- /backup/views/rnav/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/rnav/main.php -------------------------------------------------------------------------------- /backup/views/rnav/restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/rnav/restore.php -------------------------------------------------------------------------------- /backup/views/rnav/servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/rnav/servers.php -------------------------------------------------------------------------------- /backup/views/rnav/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/rnav/templates.php -------------------------------------------------------------------------------- /backup/views/servers/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/servers/email.php -------------------------------------------------------------------------------- /backup/views/servers/ftp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/servers/ftp.php -------------------------------------------------------------------------------- /backup/views/servers/local.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/servers/local.php -------------------------------------------------------------------------------- /backup/views/servers/mysql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/servers/mysql.php -------------------------------------------------------------------------------- /backup/views/servers/servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/servers/servers.php -------------------------------------------------------------------------------- /backup/views/servers/ssh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/backup/views/servers/ssh.php -------------------------------------------------------------------------------- /blacklist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/LICENSE -------------------------------------------------------------------------------- /blacklist/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/functions.inc.php -------------------------------------------------------------------------------- /blacklist/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/guimodule.php -------------------------------------------------------------------------------- /blacklist/i18n/blacklist.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/i18n/blacklist.pot -------------------------------------------------------------------------------- /blacklist/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/install.php -------------------------------------------------------------------------------- /blacklist/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/module.xml -------------------------------------------------------------------------------- /blacklist/page.blacklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/blacklist/page.blacklist.php -------------------------------------------------------------------------------- /bosssecretary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/README.md -------------------------------------------------------------------------------- /bosssecretary/form_template.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/form_template.tpl -------------------------------------------------------------------------------- /bosssecretary/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/functions.inc.php -------------------------------------------------------------------------------- /bosssecretary/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/guimodule.php -------------------------------------------------------------------------------- /bosssecretary/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/install.php -------------------------------------------------------------------------------- /bosssecretary/install.sql: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /bosssecretary/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/module.xml -------------------------------------------------------------------------------- /bosssecretary/titlelang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/titlelang.php -------------------------------------------------------------------------------- /bosssecretary/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/uninstall.php -------------------------------------------------------------------------------- /bosssecretary/uninstall.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bosssecretary/uninstall.sql -------------------------------------------------------------------------------- /bulkdids/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/.gitattributes -------------------------------------------------------------------------------- /bulkdids/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/.htaccess -------------------------------------------------------------------------------- /bulkdids/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/LICENSE -------------------------------------------------------------------------------- /bulkdids/bulkdids.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/bulkdids.css -------------------------------------------------------------------------------- /bulkdids/bulkdids.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/bulkdids.inc.php -------------------------------------------------------------------------------- /bulkdids/i18n/bulkdids.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/i18n/bulkdids.pot -------------------------------------------------------------------------------- /bulkdids/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/module.xml -------------------------------------------------------------------------------- /bulkdids/page.bulkdids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/page.bulkdids.php -------------------------------------------------------------------------------- /bulkdids/table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/table.csv -------------------------------------------------------------------------------- /bulkdids/template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkdids/template.csv -------------------------------------------------------------------------------- /bulkextensions/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkextensions/.htaccess -------------------------------------------------------------------------------- /bulkextensions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkextensions/LICENSE -------------------------------------------------------------------------------- /bulkextensions/bulkextensions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkextensions/bulkextensions.css -------------------------------------------------------------------------------- /bulkextensions/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkextensions/module.xml -------------------------------------------------------------------------------- /bulkextensions/table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkextensions/table.csv -------------------------------------------------------------------------------- /bulkextensions/template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/bulkextensions/template.csv -------------------------------------------------------------------------------- /callback/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/LICENSE -------------------------------------------------------------------------------- /callback/bin/callback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/bin/callback -------------------------------------------------------------------------------- /callback/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/functions.inc.php -------------------------------------------------------------------------------- /callback/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/guimodule.php -------------------------------------------------------------------------------- /callback/i18n/callback.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/i18n/callback.pot -------------------------------------------------------------------------------- /callback/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/install.php -------------------------------------------------------------------------------- /callback/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/install.sql -------------------------------------------------------------------------------- /callback/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/module.xml -------------------------------------------------------------------------------- /callback/page.callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/page.callback.php -------------------------------------------------------------------------------- /callback/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callback/uninstall.php -------------------------------------------------------------------------------- /callforward/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callforward/LICENSE -------------------------------------------------------------------------------- /callforward/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callforward/functions.inc.php -------------------------------------------------------------------------------- /callforward/i18n/callforward.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callforward/i18n/callforward.pot -------------------------------------------------------------------------------- /callforward/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callforward/install.php -------------------------------------------------------------------------------- /callforward/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callforward/module.xml -------------------------------------------------------------------------------- /callrecording/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/.gitattributes -------------------------------------------------------------------------------- /callrecording/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/LICENSE -------------------------------------------------------------------------------- /callrecording/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/functions.inc.php -------------------------------------------------------------------------------- /callrecording/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/guimodule.php -------------------------------------------------------------------------------- /callrecording/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/install.php -------------------------------------------------------------------------------- /callrecording/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/module.xml -------------------------------------------------------------------------------- /callrecording/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callrecording/uninstall.php -------------------------------------------------------------------------------- /callwaiting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callwaiting/LICENSE -------------------------------------------------------------------------------- /callwaiting/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callwaiting/functions.inc.php -------------------------------------------------------------------------------- /callwaiting/i18n/callwaiting.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callwaiting/i18n/callwaiting.pot -------------------------------------------------------------------------------- /callwaiting/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callwaiting/install.php -------------------------------------------------------------------------------- /callwaiting/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/callwaiting/module.xml -------------------------------------------------------------------------------- /cdr/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/.gitattributes -------------------------------------------------------------------------------- /cdr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/LICENSE -------------------------------------------------------------------------------- /cdr/assets/css/cdr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/assets/css/cdr.css -------------------------------------------------------------------------------- /cdr/assets/css/daterangepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/assets/css/daterangepicker.css -------------------------------------------------------------------------------- /cdr/assets/images/cdr_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/assets/images/cdr_download.png -------------------------------------------------------------------------------- /cdr/assets/images/cdr_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/assets/images/cdr_sound.png -------------------------------------------------------------------------------- /cdr/assets/js/cdr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/assets/js/cdr.js -------------------------------------------------------------------------------- /cdr/assets/js/zdaterangepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/assets/js/zdaterangepicker.js -------------------------------------------------------------------------------- /cdr/cdr_audio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/cdr_audio.php -------------------------------------------------------------------------------- /cdr/cdr_play.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/cdr_play.php -------------------------------------------------------------------------------- /cdr/crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/crypt.php -------------------------------------------------------------------------------- /cdr/etc/cel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/etc/cel.conf -------------------------------------------------------------------------------- /cdr/etc/cel_odbc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/etc/cel_odbc.conf -------------------------------------------------------------------------------- /cdr/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/functions.inc.php -------------------------------------------------------------------------------- /cdr/i18n/bg/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/bg/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/i18n/cdr.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/cdr.pot -------------------------------------------------------------------------------- /cdr/i18n/es_ES/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/es_ES/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/i18n/he_IL/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/he_IL/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/i18n/ja_JP/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/ja_JP/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/i18n/pt_BR/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/pt_BR/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/i18n/ru_RU/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/ru_RU/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/i18n/sv_SE/LC_MESSAGES/cdr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/i18n/sv_SE/LC_MESSAGES/cdr.po -------------------------------------------------------------------------------- /cdr/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/install.php -------------------------------------------------------------------------------- /cdr/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/module.xml -------------------------------------------------------------------------------- /cdr/page.cdr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cdr/page.cdr.php -------------------------------------------------------------------------------- /cidlookup/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/.gitattributes -------------------------------------------------------------------------------- /cidlookup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/LICENSE -------------------------------------------------------------------------------- /cidlookup/assets/js/sources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/assets/js/sources.js -------------------------------------------------------------------------------- /cidlookup/bin/opencnam-alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/bin/opencnam-alert.php -------------------------------------------------------------------------------- /cidlookup/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/functions.inc.php -------------------------------------------------------------------------------- /cidlookup/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/guimodule.php -------------------------------------------------------------------------------- /cidlookup/i18n/cidlookup.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/i18n/cidlookup.pot -------------------------------------------------------------------------------- /cidlookup/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/install.php -------------------------------------------------------------------------------- /cidlookup/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/module.xml -------------------------------------------------------------------------------- /cidlookup/page.cidlookup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/page.cidlookup.php -------------------------------------------------------------------------------- /cidlookup/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/uninstall.php -------------------------------------------------------------------------------- /cidlookup/views/main.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/cidlookup/views/main.html.php -------------------------------------------------------------------------------- /conferences/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/LICENSE -------------------------------------------------------------------------------- /conferences/etc/confbridge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/etc/confbridge.conf -------------------------------------------------------------------------------- /conferences/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/functions.inc.php -------------------------------------------------------------------------------- /conferences/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/guimodule.php -------------------------------------------------------------------------------- /conferences/i18n/conferences.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/i18n/conferences.pot -------------------------------------------------------------------------------- /conferences/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/install.php -------------------------------------------------------------------------------- /conferences/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/module.xml -------------------------------------------------------------------------------- /conferences/page.conferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/conferences/page.conferences.php -------------------------------------------------------------------------------- /conferences/uninstall.sql: -------------------------------------------------------------------------------- 1 | 2 | DROP TABLE IF EXISTS meetme; 3 | -------------------------------------------------------------------------------- /core/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/.gitattributes -------------------------------------------------------------------------------- /core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/LICENSE -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/README.md -------------------------------------------------------------------------------- /core/XML_Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/XML_Parser.php -------------------------------------------------------------------------------- /core/XML_Unserializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/XML_Unserializer.php -------------------------------------------------------------------------------- /core/agi-bin/checksound.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/checksound.agi -------------------------------------------------------------------------------- /core/agi-bin/dialparties.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/dialparties.agi -------------------------------------------------------------------------------- /core/agi-bin/directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/directory -------------------------------------------------------------------------------- /core/agi-bin/enumlookup.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/enumlookup.agi -------------------------------------------------------------------------------- /core/agi-bin/fixlocalprefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/fixlocalprefix -------------------------------------------------------------------------------- /core/agi-bin/list-item-remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/list-item-remove.php -------------------------------------------------------------------------------- /core/agi-bin/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/sql.php -------------------------------------------------------------------------------- /core/agi-bin/user_login_out.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/agi-bin/user_login_out.agi -------------------------------------------------------------------------------- /core/assets/css/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/assets/css/core.css -------------------------------------------------------------------------------- /core/assets/css/trunks/trunks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/assets/css/trunks/trunks.css -------------------------------------------------------------------------------- /core/assets/js/trunks/trunks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/assets/js/trunks/trunks.js -------------------------------------------------------------------------------- /core/etc/extensions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/extensions.conf -------------------------------------------------------------------------------- /core/etc/features.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/features.conf -------------------------------------------------------------------------------- /core/etc/func_odbc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/func_odbc.conf -------------------------------------------------------------------------------- /core/etc/http.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/http.conf -------------------------------------------------------------------------------- /core/etc/iax.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/iax.conf -------------------------------------------------------------------------------- /core/etc/odbc/additional.conf: -------------------------------------------------------------------------------- 1 | [SQL] 2 | dsn=asterisk 3 | readsql=${ARG1} 4 | 5 | -------------------------------------------------------------------------------- /core/etc/pjsip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/pjsip.conf -------------------------------------------------------------------------------- /core/etc/res_odbc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/res_odbc.conf -------------------------------------------------------------------------------- /core/etc/rtp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/rtp.conf -------------------------------------------------------------------------------- /core/etc/sip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/sip.conf -------------------------------------------------------------------------------- /core/etc/sip_notify.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/sip_notify.conf -------------------------------------------------------------------------------- /core/etc/udptl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/etc/udptl.conf -------------------------------------------------------------------------------- /core/export.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/export.html.php -------------------------------------------------------------------------------- /core/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/functions.inc.php -------------------------------------------------------------------------------- /core/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/guimodule.php -------------------------------------------------------------------------------- /core/images/arrow_up_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/arrow_up_down.png -------------------------------------------------------------------------------- /core/images/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/cog.png -------------------------------------------------------------------------------- /core/images/core_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/core_add.png -------------------------------------------------------------------------------- /core/images/core_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/core_delete.png -------------------------------------------------------------------------------- /core/images/default-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/default-option.png -------------------------------------------------------------------------------- /core/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/edit.png -------------------------------------------------------------------------------- /core/images/email_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/email_edit.png -------------------------------------------------------------------------------- /core/images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/link.png -------------------------------------------------------------------------------- /core/images/resultset_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/resultset_bottom.png -------------------------------------------------------------------------------- /core/images/resultset_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/resultset_down.png -------------------------------------------------------------------------------- /core/images/resultset_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/resultset_top.png -------------------------------------------------------------------------------- /core/images/resultset_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/resultset_up.png -------------------------------------------------------------------------------- /core/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/spinner.gif -------------------------------------------------------------------------------- /core/images/telephone_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/telephone_delete.png -------------------------------------------------------------------------------- /core/images/telephone_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/telephone_edit.png -------------------------------------------------------------------------------- /core/images/telephone_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/telephone_key.png -------------------------------------------------------------------------------- /core/images/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/user_add.png -------------------------------------------------------------------------------- /core/images/user_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/user_delete.png -------------------------------------------------------------------------------- /core/images/user_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/user_edit.png -------------------------------------------------------------------------------- /core/images/user_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/images/user_go.png -------------------------------------------------------------------------------- /core/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/install.php -------------------------------------------------------------------------------- /core/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/module.xml -------------------------------------------------------------------------------- /core/page.advancedsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.advancedsettings.php -------------------------------------------------------------------------------- /core/page.ampusers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.ampusers.php -------------------------------------------------------------------------------- /core/page.dahdichandids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.dahdichandids.php -------------------------------------------------------------------------------- /core/page.devices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.devices.php -------------------------------------------------------------------------------- /core/page.did.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.did.php -------------------------------------------------------------------------------- /core/page.extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.extensions.php -------------------------------------------------------------------------------- /core/page.routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.routing.php -------------------------------------------------------------------------------- /core/page.trunks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.trunks.php -------------------------------------------------------------------------------- /core/page.users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/page.users.php -------------------------------------------------------------------------------- /core/sounds/agent-login.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/sounds/agent-login.sln -------------------------------------------------------------------------------- /core/sounds/agent-logoff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/sounds/agent-logoff.sln -------------------------------------------------------------------------------- /core/sounds/featurecode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/core/sounds/featurecode.sln -------------------------------------------------------------------------------- /customappsreg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/LICENSE -------------------------------------------------------------------------------- /customappsreg/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/functions.inc.php -------------------------------------------------------------------------------- /customappsreg/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/guimodule.php -------------------------------------------------------------------------------- /customappsreg/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/install.php -------------------------------------------------------------------------------- /customappsreg/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/module.xml -------------------------------------------------------------------------------- /customappsreg/page.customdests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/page.customdests.php -------------------------------------------------------------------------------- /customappsreg/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customappsreg/uninstall.php -------------------------------------------------------------------------------- /customcontexts/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/.gitattributes -------------------------------------------------------------------------------- /customcontexts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/LICENSE -------------------------------------------------------------------------------- /customcontexts/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/functions.inc.php -------------------------------------------------------------------------------- /customcontexts/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/guimodule.php -------------------------------------------------------------------------------- /customcontexts/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/install.php -------------------------------------------------------------------------------- /customcontexts/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/module.xml -------------------------------------------------------------------------------- /customcontexts/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customcontexts/uninstall.php -------------------------------------------------------------------------------- /customerdb/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customerdb/functions.inc.php -------------------------------------------------------------------------------- /customerdb/i18n/customerdb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customerdb/i18n/customerdb.pot -------------------------------------------------------------------------------- /customerdb/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customerdb/install.php -------------------------------------------------------------------------------- /customerdb/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customerdb/module.xml -------------------------------------------------------------------------------- /customerdb/page.customerdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/customerdb/page.customerdb.php -------------------------------------------------------------------------------- /customerdb/uninstall.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE customerdb; 2 | -------------------------------------------------------------------------------- /dahdiconfig/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/dahdiconfig/.gitattributes -------------------------------------------------------------------------------- /dahdiconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/dahdiconfig/LICENSE -------------------------------------------------------------------------------- /dahdiconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/dahdiconfig/README.md -------------------------------------------------------------------------------- /dahdiconfig/ajax.html.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /framework/amp_conf/htdocs/admin/libraries/php-upgrade/version.18: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/amp_conf/htdocs/admin/views/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from All 2 | -------------------------------------------------------------------------------- /framework/amp_conf/sbin/amportal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/amp_conf/sbin/amportal -------------------------------------------------------------------------------- /framework/amportal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/amportal.conf -------------------------------------------------------------------------------- /framework/apply_conf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/apply_conf.sh -------------------------------------------------------------------------------- /framework/asterisk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/asterisk.conf -------------------------------------------------------------------------------- /framework/initial_settings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/initial_settings.csv -------------------------------------------------------------------------------- /framework/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/install.php -------------------------------------------------------------------------------- /framework/install_amp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/install_amp -------------------------------------------------------------------------------- /framework/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/module.xml -------------------------------------------------------------------------------- /framework/sqlite.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/sqlite.readme -------------------------------------------------------------------------------- /framework/start_asterisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/framework/start_asterisk -------------------------------------------------------------------------------- /framework/upgrades/2.10.1.md5: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /framework/upgrades/2.11.0.49/migration.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /superfecta/includes/oauth-php/example/server/core/templates/inc/header.tpl: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /superfecta/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/install.php -------------------------------------------------------------------------------- /superfecta/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/module.xml -------------------------------------------------------------------------------- /superfecta/page.superfecta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/page.superfecta.php -------------------------------------------------------------------------------- /superfecta/sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/sources.php -------------------------------------------------------------------------------- /superfecta/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/uninstall.php -------------------------------------------------------------------------------- /superfecta/views/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/views/footer.html -------------------------------------------------------------------------------- /superfecta/views/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/views/header.html -------------------------------------------------------------------------------- /superfecta/views/main.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /superfecta/views/sources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/views/sources.html -------------------------------------------------------------------------------- /superfecta/views/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/superfecta/views/style.css -------------------------------------------------------------------------------- /timeconditions/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/.gitattributes -------------------------------------------------------------------------------- /timeconditions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/LICENSE -------------------------------------------------------------------------------- /timeconditions/bin/schedtc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/bin/schedtc.php -------------------------------------------------------------------------------- /timeconditions/countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/countries.csv -------------------------------------------------------------------------------- /timeconditions/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/functions.inc.php -------------------------------------------------------------------------------- /timeconditions/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/guimodule.php -------------------------------------------------------------------------------- /timeconditions/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/install.php -------------------------------------------------------------------------------- /timeconditions/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/module.xml -------------------------------------------------------------------------------- /timeconditions/page.timegroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/page.timegroups.php -------------------------------------------------------------------------------- /timeconditions/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/timeconditions/uninstall.php -------------------------------------------------------------------------------- /trunkbalance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/README.md -------------------------------------------------------------------------------- /trunkbalance/agi-bin/tbtoggle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/agi-bin/tbtoggle.php -------------------------------------------------------------------------------- /trunkbalance/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/functions.inc.php -------------------------------------------------------------------------------- /trunkbalance/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/install.php -------------------------------------------------------------------------------- /trunkbalance/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/module.xml -------------------------------------------------------------------------------- /trunkbalance/page.trunkbalance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/page.trunkbalance.php -------------------------------------------------------------------------------- /trunkbalance/titlelang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/titlelang.php -------------------------------------------------------------------------------- /trunkbalance/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/trunkbalance/uninstall.php -------------------------------------------------------------------------------- /tts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/LICENSE -------------------------------------------------------------------------------- /tts/agi-bin/azuretts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/agi-bin/azuretts.php -------------------------------------------------------------------------------- /tts/agi-bin/elevenlabstts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/agi-bin/elevenlabstts.php -------------------------------------------------------------------------------- /tts/agi-bin/googletts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/agi-bin/googletts.pl -------------------------------------------------------------------------------- /tts/agi-bin/googlewave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/agi-bin/googlewave.php -------------------------------------------------------------------------------- /tts/agi-bin/issabel-tts.agi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/agi-bin/issabel-tts.agi -------------------------------------------------------------------------------- /tts/agi-bin/piper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/agi-bin/piper.php -------------------------------------------------------------------------------- /tts/assets/css/codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/css/codemirror.css -------------------------------------------------------------------------------- /tts/assets/css/lint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/css/lint.css -------------------------------------------------------------------------------- /tts/assets/css/mdn-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/css/mdn-like.css -------------------------------------------------------------------------------- /tts/assets/js/0codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/js/0codemirror.js -------------------------------------------------------------------------------- /tts/assets/js/active-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/js/active-line.js -------------------------------------------------------------------------------- /tts/assets/js/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/js/javascript.js -------------------------------------------------------------------------------- /tts/assets/js/json-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/js/json-lint.js -------------------------------------------------------------------------------- /tts/assets/js/zdone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/assets/js/zdone.js -------------------------------------------------------------------------------- /tts/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/functions.inc.php -------------------------------------------------------------------------------- /tts/i18n/es_ES/LC_MESSAGES/tts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/i18n/es_ES/LC_MESSAGES/tts.po -------------------------------------------------------------------------------- /tts/i18n/pt_BR/LC_MESSAGES/tts.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/i18n/pt_BR/LC_MESSAGES/tts.po -------------------------------------------------------------------------------- /tts/i18n/tts.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/i18n/tts.pot -------------------------------------------------------------------------------- /tts/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/install.php -------------------------------------------------------------------------------- /tts/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/module.xml -------------------------------------------------------------------------------- /tts/page.tts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/page.tts.php -------------------------------------------------------------------------------- /tts/page.ttsadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/page.ttsadmin.php -------------------------------------------------------------------------------- /tts/titlelang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/titlelang.php -------------------------------------------------------------------------------- /tts/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/tts/uninstall.php -------------------------------------------------------------------------------- /userman/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/.gitattributes -------------------------------------------------------------------------------- /userman/BMO.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/BMO.class.php -------------------------------------------------------------------------------- /userman/DB_Helper.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/DB_Helper.class.php -------------------------------------------------------------------------------- /userman/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/LICENSE -------------------------------------------------------------------------------- /userman/Userman.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/Userman.class.php -------------------------------------------------------------------------------- /userman/assets/css/userman.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/assets/css/userman.css -------------------------------------------------------------------------------- /userman/assets/js/userman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/assets/js/userman.js -------------------------------------------------------------------------------- /userman/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/functions.inc.php -------------------------------------------------------------------------------- /userman/functions.inc/auth/issabelpbx.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userman/functions.inc/guihooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/functions.inc/guihooks.php -------------------------------------------------------------------------------- /userman/i18n/userman.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/i18n/userman.pot -------------------------------------------------------------------------------- /userman/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/install.php -------------------------------------------------------------------------------- /userman/module.xml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/module.xml.disabled -------------------------------------------------------------------------------- /userman/page.userman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/page.userman.php -------------------------------------------------------------------------------- /userman/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/uninstall.php -------------------------------------------------------------------------------- /userman/views/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/views/general.php -------------------------------------------------------------------------------- /userman/views/rnav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/views/rnav.php -------------------------------------------------------------------------------- /userman/views/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/views/users.php -------------------------------------------------------------------------------- /userman/views/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/userman/views/welcome.php -------------------------------------------------------------------------------- /vmblast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/LICENSE -------------------------------------------------------------------------------- /vmblast/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/functions.inc.php -------------------------------------------------------------------------------- /vmblast/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/guimodule.php -------------------------------------------------------------------------------- /vmblast/i18n/vmblast.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/i18n/vmblast.pot -------------------------------------------------------------------------------- /vmblast/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/install.php -------------------------------------------------------------------------------- /vmblast/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/install.sql -------------------------------------------------------------------------------- /vmblast/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/module.xml -------------------------------------------------------------------------------- /vmblast/page.vmblast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/page.vmblast.php -------------------------------------------------------------------------------- /vmblast/titlelang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/titlelang.php -------------------------------------------------------------------------------- /vmblast/uninstall.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/vmblast/uninstall.sql -------------------------------------------------------------------------------- /voicemail/.gitattributes: -------------------------------------------------------------------------------- 1 | module.xml merge=ours -------------------------------------------------------------------------------- /voicemail/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/LICENSE -------------------------------------------------------------------------------- /voicemail/assets/css/voicemail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/assets/css/voicemail.css -------------------------------------------------------------------------------- /voicemail/assets/js/voicemail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/assets/js/voicemail.js -------------------------------------------------------------------------------- /voicemail/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/functions.inc.php -------------------------------------------------------------------------------- /voicemail/i18n/voicemail.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/i18n/voicemail.pot -------------------------------------------------------------------------------- /voicemail/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/install.php -------------------------------------------------------------------------------- /voicemail/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/module.xml -------------------------------------------------------------------------------- /voicemail/page.voicemail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/page.voicemail.php -------------------------------------------------------------------------------- /voicemail/views/dialplan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/dialplan.php -------------------------------------------------------------------------------- /voicemail/views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/header.php -------------------------------------------------------------------------------- /voicemail/views/nav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/nav.php -------------------------------------------------------------------------------- /voicemail/views/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/settings.php -------------------------------------------------------------------------------- /voicemail/views/tz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/tz.php -------------------------------------------------------------------------------- /voicemail/views/usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/usage.php -------------------------------------------------------------------------------- /voicemail/views/usage_system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/voicemail/views/usage_system.php -------------------------------------------------------------------------------- /weakpasswords/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/weakpasswords/LICENSE -------------------------------------------------------------------------------- /weakpasswords/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/weakpasswords/functions.inc.php -------------------------------------------------------------------------------- /weakpasswords/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/weakpasswords/module.xml -------------------------------------------------------------------------------- /weakpasswords/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/weakpasswords/uninstall.php -------------------------------------------------------------------------------- /writequeuelog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/LICENSE -------------------------------------------------------------------------------- /writequeuelog/functions.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/functions.inc.php -------------------------------------------------------------------------------- /writequeuelog/guimodule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/guimodule.php -------------------------------------------------------------------------------- /writequeuelog/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/install.php -------------------------------------------------------------------------------- /writequeuelog/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/module.xml -------------------------------------------------------------------------------- /writequeuelog/titlelang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/titlelang.php -------------------------------------------------------------------------------- /writequeuelog/uninstall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IssabelFoundation/issabelPBX/HEAD/writequeuelog/uninstall.php --------------------------------------------------------------------------------