svn commit: r536118 - in head/www: . fusionpbx fusionpbx/files

Kurt Jaeger pi at FreeBSD.org
Thu May 21 11:39:22 UTC 2020


Author: pi
Date: Thu May 21 11:39:20 2020
New Revision: 536118
URL: https://svnweb.freebsd.org/changeset/ports/536118

Log:
  New port: www/fusionpbx
  
  FusionPBX is an opensource PHP7 based frontend web gui for freeswitch.
  
  WWW: https://www.fusionpbx.com
  
  PR:		238234
  Submitted by:	Richard Allen <richard2891 at gmail.com>

Added:
  head/www/fusionpbx/
  head/www/fusionpbx/Makefile   (contents, props changed)
  head/www/fusionpbx/distinfo   (contents, props changed)
  head/www/fusionpbx/files/
  head/www/fusionpbx/files/pkg-message   (contents, props changed)
  head/www/fusionpbx/pkg-descr   (contents, props changed)
  head/www/fusionpbx/pkg-plist   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Thu May 21 11:37:29 2020	(r536117)
+++ head/www/Makefile	Thu May 21 11:39:20 2020	(r536118)
@@ -169,6 +169,7 @@
     SUBDIR += fpc-libmicrohttpd
     SUBDIR += free-sa-devel
     SUBDIR += fswiki
+    SUBDIR += fusionpbx
     SUBDIR += g-cows
     SUBDIR += g-gcl
     SUBDIR += gallery2

Added: head/www/fusionpbx/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/fusionpbx/Makefile	Thu May 21 11:39:20 2020	(r536118)
@@ -0,0 +1,55 @@
+# Created by: Richard Allen <richard2891 at gmail.com>
+# $FreeBSD$
+
+PORTNAME=	fusionpbx
+PORTVERSION=	4.4.1
+CATEGORIES=	www
+
+MAINTAINER=	richard2891 at gmail.com
+COMMENT=	Web/PHP Interface for FreeSwitch
+
+LICENSE=	MPL11
+
+ONLY_FOR_ARCHS=	amd64
+
+LIB_DEPENDS=	libodbc.so:databases/unixODBC
+RUN_DEPENDS=	${PHPBASE}/lib/php/${PHP_EXT_DIR}/pdo_odbc.so:databases/php${PHP_VER}-pdo_odbc \
+		${LOCALBASE}/bin/freeswitch:net/freeswitch \
+		${LOCALBASE}/bin/memcached:databases/memcached
+
+USES=		sqlite php fakeroot
+USE_PHP=	phar pdo pdo_odbc pdo_sqlite json gd imap \
+		ldap openssl sockets simplexml xml session odbc
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	${PORTNAME}
+GH_PROJECT=	${PORTNAME}
+GH_TAGNAME=	${PORTVERSION}
+
+DEFAULT_VERSIONS+=php=7.2
+
+VARBASE=	var
+
+WRKSRC_SUBDIR=	${WRKDIR}/${PORTNAME}-${PORTVERSION}
+NO_BUILD=	yes
+
+OPTIONS_DEFINE=	PDOPGSQL
+
+OPTIONS_DEFAULT=	PDOPGSQL
+
+PDOPGSQL_DESC=	Install POSTGRESQL PDO Connector
+
+PDOPGSQL_USES=	pgsql
+PDOPGSQL_USE=	PHP=pgsql,pdo_pgsql
+
+.include <bsd.port.options.mk>
+
+do-install:
+	@${MKDIR} ${STAGEDIR}${WWWDIR}
+	@(cd ${WRKSRC_SUBDIR} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR})
+	@${MKDIR} ${STAGEDIR}/${VARBASE}/db/fusionpbx
+
+	@${MKDIR} ${STAGEDIR}/${VARBASE}/cache/fusionpbx
+	@${CHMOD} -R 755 ${STAGEDIR}${WWWDIR}/secure
+
+.include <bsd.port.mk>

Added: head/www/fusionpbx/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/fusionpbx/distinfo	Thu May 21 11:39:20 2020	(r536118)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1552794100
+SHA256 (fusionpbx-fusionpbx-4.4.1_GH0.tar.gz) = 232063ae3e3bc4330311f317e4de9aef16fd3fb4cf0dd558a86af235b8790635
+SIZE (fusionpbx-fusionpbx-4.4.1_GH0.tar.gz) = 8985184

Added: head/www/fusionpbx/files/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/fusionpbx/files/pkg-message	Thu May 21 11:39:20 2020	(r536118)
@@ -0,0 +1,45 @@
+#################################
+#run freeswith under www user and group
+sysrc memcached_enable="YES"
+sysrc freeswitch_enable="YES"
+sysrc freeswitch_flags="-nc -nonat"
+sysrc freeswitch_user="www"
+sysrc freeswitch_group="www"
+
+#copy the default conf directory
+mkdir -p /usr/local/etc/freeswitch
+cp -R /usr/local/www/fusionpbx/resources/templates/conf/* /usr/local/etc/freeswitch
+
+#copy the scripts
+cp -R /usr/local/www/fusionpbx/resources/install/scripts /usr/local/share/freeswitch
+
+#default ownership
+chown -R www:www /usr/local/etc/freeswitch
+chown -R www:www /var/lib/freeswitch
+chown -R www:www /usr/local/share/freeswitch
+chown -R www:www /var/log/freeswitch
+chown -R www:www /var/run/freeswitch
+
+#install nginx or apache24 and mod_php72
+#optinal install postgresql10
+sysrc postgresql_enable="YES"
+  
+/usr/local/etc/rc.d/postgresql initdb
+
+sudo -u postgres /usr/local/bin/pg_ctl -D /var/db/postgres/data10 -l logfile start
+
+service postgresql restart
+  
+sudo -u postgres psql -c "DROP DATABASE fusionpbx;"
+sudo -u postgres psql -c "DROP DATABASE freeswitch;"
+sudo -u postgres psql -c "DROP ROLE fusionpbx;"
+sudo -u postgres psql -c "DROP ROLE freeswitch;"
+  
+sudo -u postgres psql -c "CREATE DATABASE fusionpbx;"
+sudo -u postgres psql -c "CREATE DATABASE freeswitch;"
+sudo -u postgres psql -c "CREATE ROLE fusionpbx WITH SUPERUSER LOGIN PASSWORD '$DB_PASSWORD';"
+sudo -u postgres psql -c "CREATE ROLE freeswitch WITH SUPERUSER LOGIN PASSWORD '$DB_PASSWORD';"
+sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE fusionpbx to fusionpbx;"
+sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE freeswitch to fusionpbx;"
+sudo -u postgres psql -c "GRANT ALL PRIVILEGES ON DATABASE freeswitch to freeswitch;"
+#################################

Added: head/www/fusionpbx/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/fusionpbx/pkg-descr	Thu May 21 11:39:20 2020	(r536118)
@@ -0,0 +1,3 @@
+FusionPBX is an opensource PHP7 based frontend web gui for freeswitch.
+
+WWW: https://www.fusionpbx.com

Added: head/www/fusionpbx/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/fusionpbx/pkg-plist	Thu May 21 11:39:20 2020	(r536118)
@@ -0,0 +1,2829 @@
+ at owner www
+ at group www
+%%WWWDIR%%/.gitignore
+%%WWWDIR%%/.htaccess
+%%WWWDIR%%/.project
+%%WWWDIR%%/README.md
+%%WWWDIR%%/app/access_controls/access_control_delete.php
+%%WWWDIR%%/app/access_controls/access_control_edit.php
+%%WWWDIR%%/app/access_controls/access_control_node_delete.php
+%%WWWDIR%%/app/access_controls/access_control_node_edit.php
+%%WWWDIR%%/app/access_controls/access_control_nodes.php
+%%WWWDIR%%/app/access_controls/access_controls.php
+%%WWWDIR%%/app/access_controls/app_config.php
+%%WWWDIR%%/app/access_controls/app_defaults.php
+%%WWWDIR%%/app/access_controls/app_languages.php
+%%WWWDIR%%/app/access_controls/app_menu.php
+%%WWWDIR%%/app/access_controls/root.php
+%%WWWDIR%%/app/adminer/adminer.css
+%%WWWDIR%%/app/adminer/adminer.php
+%%WWWDIR%%/app/adminer/app_config.php
+%%WWWDIR%%/app/adminer/app_defaults.php
+%%WWWDIR%%/app/adminer/app_menu.php
+%%WWWDIR%%/app/adminer/index.php
+%%WWWDIR%%/app/adminer/root.php
+%%WWWDIR%%/app/azure/resources/classes/azure.php
+%%WWWDIR%%/app/backup/app_config.php
+%%WWWDIR%%/app/backup/app_languages.php
+%%WWWDIR%%/app/backup/app_menu.php
+%%WWWDIR%%/app/backup/index.php
+%%WWWDIR%%/app/backup/resources/classes/backup.php
+%%WWWDIR%%/app/backup/root.php
+%%WWWDIR%%/app/bridges/app_config.php
+%%WWWDIR%%/app/bridges/app_languages.php
+%%WWWDIR%%/app/bridges/app_menu.php
+%%WWWDIR%%/app/bridges/bridge_delete.php
+%%WWWDIR%%/app/bridges/bridge_edit.php
+%%WWWDIR%%/app/bridges/bridges.php
+%%WWWDIR%%/app/bridges/resources/classes/bridges.php
+%%WWWDIR%%/app/bridges/root.php
+%%WWWDIR%%/app/call_block/app_config.php
+%%WWWDIR%%/app/call_block/app_languages.php
+%%WWWDIR%%/app/call_block/app_menu.php
+%%WWWDIR%%/app/call_block/call_block.php
+%%WWWDIR%%/app/call_block/call_block_cdr_add.php
+%%WWWDIR%%/app/call_block/call_block_delete.php
+%%WWWDIR%%/app/call_block/call_block_edit.php
+%%WWWDIR%%/app/call_block/root.php
+%%WWWDIR%%/app/call_broadcast/app_config.php
+%%WWWDIR%%/app/call_broadcast/app_languages.php
+%%WWWDIR%%/app/call_broadcast/app_menu.php
+%%WWWDIR%%/app/call_broadcast/call_broadcast.php
+%%WWWDIR%%/app/call_broadcast/call_broadcast_delete.php
+%%WWWDIR%%/app/call_broadcast/call_broadcast_edit.php
+%%WWWDIR%%/app/call_broadcast/call_broadcast_send.php
+%%WWWDIR%%/app/call_broadcast/call_broadcast_stop.php
+%%WWWDIR%%/app/call_broadcast/root.php
+%%WWWDIR%%/app/call_center_active/app_config.php
+%%WWWDIR%%/app/call_center_active/app_languages.php
+%%WWWDIR%%/app/call_center_active/app_menu.php
+%%WWWDIR%%/app/call_center_active/call_center_active.php
+%%WWWDIR%%/app/call_center_active/call_center_active_inc.php
+%%WWWDIR%%/app/call_center_active/call_center_exec.php
+%%WWWDIR%%/app/call_center_active/call_center_queue.php
+%%WWWDIR%%/app/call_center_active/root.php
+%%WWWDIR%%/app/call_centers/app_config.php
+%%WWWDIR%%/app/call_centers/app_defaults.php
+%%WWWDIR%%/app/call_centers/app_languages.php
+%%WWWDIR%%/app/call_centers/app_menu.php
+%%WWWDIR%%/app/call_centers/call_center_agent_dashboard.php
+%%WWWDIR%%/app/call_centers/call_center_agent_delete.php
+%%WWWDIR%%/app/call_centers/call_center_agent_edit.php
+%%WWWDIR%%/app/call_centers/call_center_agent_status.php
+%%WWWDIR%%/app/call_centers/call_center_agents.php
+%%WWWDIR%%/app/call_centers/call_center_queue_delete.php
+%%WWWDIR%%/app/call_centers/call_center_queue_edit.php
+%%WWWDIR%%/app/call_centers/call_center_queues.php
+%%WWWDIR%%/app/call_centers/call_center_tier_edit.php
+%%WWWDIR%%/app/call_centers/cmd.php
+%%WWWDIR%%/app/call_centers/resources/classes/call_center.php
+%%WWWDIR%%/app/call_centers/root.php
+%%WWWDIR%%/app/call_flows/app_config.php
+%%WWWDIR%%/app/call_flows/app_languages.php
+%%WWWDIR%%/app/call_flows/app_menu.php
+%%WWWDIR%%/app/call_flows/call_flow_delete.php
+%%WWWDIR%%/app/call_flows/call_flow_edit.php
+%%WWWDIR%%/app/call_flows/call_flows.php
+%%WWWDIR%%/app/call_flows/root.php
+%%WWWDIR%%/app/call_recordings/app_config.php
+%%WWWDIR%%/app/call_recordings/app_languages.php
+%%WWWDIR%%/app/call_recordings/app_menu.php
+%%WWWDIR%%/app/call_recordings/call_recording_delete.php
+%%WWWDIR%%/app/call_recordings/call_recording_edit.php
+%%WWWDIR%%/app/call_recordings/call_recordings.php
+%%WWWDIR%%/app/call_recordings/download.php
+%%WWWDIR%%/app/call_recordings/resources/classes/call_recordings.php
+%%WWWDIR%%/app/call_recordings/root.php
+%%WWWDIR%%/app/calls/app_config.php
+%%WWWDIR%%/app/calls/app_defaults.php
+%%WWWDIR%%/app/calls/app_languages.php
+%%WWWDIR%%/app/calls/app_menu.php
+%%WWWDIR%%/app/calls/call_edit.php
+%%WWWDIR%%/app/calls/calls.php
+%%WWWDIR%%/app/calls/resources/classes/call_forward.php
+%%WWWDIR%%/app/calls/resources/classes/do_not_disturb.php
+%%WWWDIR%%/app/calls/resources/classes/feature_event_notify.php
+%%WWWDIR%%/app/calls/resources/classes/follow_me.php
+%%WWWDIR%%/app/calls/root.php
+%%WWWDIR%%/app/calls_active/app_config.php
+%%WWWDIR%%/app/calls_active/app_languages.php
+%%WWWDIR%%/app/calls_active/app_menu.php
+%%WWWDIR%%/app/calls_active/calls_active.php
+%%WWWDIR%%/app/calls_active/calls_active_inc.php
+%%WWWDIR%%/app/calls_active/calls_exec.php
+%%WWWDIR%%/app/calls_active/resources/images/refresh_active.gif
+%%WWWDIR%%/app/calls_active/resources/images/refresh_paused.png
+%%WWWDIR%%/app/calls_active/root.php
+%%WWWDIR%%/app/click_to_call/app_config.php
+%%WWWDIR%%/app/click_to_call/app_languages.php
+%%WWWDIR%%/app/click_to_call/app_menu.php
+%%WWWDIR%%/app/click_to_call/click_to_call.php
+%%WWWDIR%%/app/click_to_call/root.php
+%%WWWDIR%%/app/conference_centers/app_config.php
+%%WWWDIR%%/app/conference_centers/app_languages.php
+%%WWWDIR%%/app/conference_centers/app_menu.php
+%%WWWDIR%%/app/conference_centers/conference_center_delete.php
+%%WWWDIR%%/app/conference_centers/conference_center_edit.php
+%%WWWDIR%%/app/conference_centers/conference_centers.php
+%%WWWDIR%%/app/conference_centers/conference_room_delete.php
+%%WWWDIR%%/app/conference_centers/conference_room_edit.php
+%%WWWDIR%%/app/conference_centers/conference_rooms.php
+%%WWWDIR%%/app/conference_centers/conference_session_details.php
+%%WWWDIR%%/app/conference_centers/conference_sessions.php
+%%WWWDIR%%/app/conference_centers/resources/classes/conference_center.php
+%%WWWDIR%%/app/conference_centers/root.php
+%%WWWDIR%%/app/conference_controls/app_config.php
+%%WWWDIR%%/app/conference_controls/app_defaults.php
+%%WWWDIR%%/app/conference_controls/app_languages.php
+%%WWWDIR%%/app/conference_controls/app_menu.php
+%%WWWDIR%%/app/conference_controls/conference_control_delete.php
+%%WWWDIR%%/app/conference_controls/conference_control_detail_delete.php
+%%WWWDIR%%/app/conference_controls/conference_control_detail_edit.php
+%%WWWDIR%%/app/conference_controls/conference_control_details.php
+%%WWWDIR%%/app/conference_controls/conference_control_edit.php
+%%WWWDIR%%/app/conference_controls/conference_controls.php
+%%WWWDIR%%/app/conference_controls/root.php
+%%WWWDIR%%/app/conference_profiles/app_config.php
+%%WWWDIR%%/app/conference_profiles/app_defaults.php
+%%WWWDIR%%/app/conference_profiles/app_languages.php
+%%WWWDIR%%/app/conference_profiles/app_menu.php
+%%WWWDIR%%/app/conference_profiles/conference_profile_delete.php
+%%WWWDIR%%/app/conference_profiles/conference_profile_edit.php
+%%WWWDIR%%/app/conference_profiles/conference_profile_param_delete.php
+%%WWWDIR%%/app/conference_profiles/conference_profile_param_edit.php
+%%WWWDIR%%/app/conference_profiles/conference_profile_params.php
+%%WWWDIR%%/app/conference_profiles/conference_profiles.php
+%%WWWDIR%%/app/conference_profiles/root.php
+%%WWWDIR%%/app/conferences/app_config.php
+%%WWWDIR%%/app/conferences/app_defaults.php
+%%WWWDIR%%/app/conferences/app_languages.php
+%%WWWDIR%%/app/conferences/app_menu.php
+%%WWWDIR%%/app/conferences/conference_delete.php
+%%WWWDIR%%/app/conferences/conference_edit.php
+%%WWWDIR%%/app/conferences/conferences.php
+%%WWWDIR%%/app/conferences/root.php
+%%WWWDIR%%/app/conferences_active/app_config.php
+%%WWWDIR%%/app/conferences_active/app_languages.php
+%%WWWDIR%%/app/conferences_active/app_menu.php
+%%WWWDIR%%/app/conferences_active/conference_exec.php
+%%WWWDIR%%/app/conferences_active/conference_interactive.php
+%%WWWDIR%%/app/conferences_active/conference_interactive_inc.php
+%%WWWDIR%%/app/conferences_active/conferences_active.php
+%%WWWDIR%%/app/conferences_active/conferences_active_inc.php
+%%WWWDIR%%/app/conferences_active/resources/images/hear.png
+%%WWWDIR%%/app/conferences_active/resources/images/moderator.png
+%%WWWDIR%%/app/conferences_active/resources/images/not_recording.png
+%%WWWDIR%%/app/conferences_active/resources/images/participant.png
+%%WWWDIR%%/app/conferences_active/resources/images/recording.png
+%%WWWDIR%%/app/conferences_active/resources/images/speak.png
+%%WWWDIR%%/app/conferences_active/resources/images/talking.png
+%%WWWDIR%%/app/conferences_active/resources/images/video.png
+%%WWWDIR%%/app/conferences_active/root.php
+%%WWWDIR%%/app/contacts/app_config.php
+%%WWWDIR%%/app/contacts/app_defaults.php
+%%WWWDIR%%/app/contacts/app_languages.php
+%%WWWDIR%%/app/contacts/app_menu.php
+%%WWWDIR%%/app/contacts/contact_address_delete.php
+%%WWWDIR%%/app/contacts/contact_address_edit.php
+%%WWWDIR%%/app/contacts/contact_addresses.php
+%%WWWDIR%%/app/contacts/contact_auth.php
+%%WWWDIR%%/app/contacts/contact_delete.php
+%%WWWDIR%%/app/contacts/contact_edit.php
+%%WWWDIR%%/app/contacts/contact_email_delete.php
+%%WWWDIR%%/app/contacts/contact_email_edit.php
+%%WWWDIR%%/app/contacts/contact_emails.php
+%%WWWDIR%%/app/contacts/contact_extensions.php
+%%WWWDIR%%/app/contacts/contact_group_delete.php
+%%WWWDIR%%/app/contacts/contact_import.php
+%%WWWDIR%%/app/contacts/contact_import_google.php
+%%WWWDIR%%/app/contacts/contact_note_delete.php
+%%WWWDIR%%/app/contacts/contact_note_edit.php
+%%WWWDIR%%/app/contacts/contact_notes.php
+%%WWWDIR%%/app/contacts/contact_phone_delete.php
+%%WWWDIR%%/app/contacts/contact_phone_edit.php
+%%WWWDIR%%/app/contacts/contact_phones.php
+%%WWWDIR%%/app/contacts/contact_relation_delete.php
+%%WWWDIR%%/app/contacts/contact_relation_edit.php
+%%WWWDIR%%/app/contacts/contact_relations.php
+%%WWWDIR%%/app/contacts/contact_setting_delete.php
+%%WWWDIR%%/app/contacts/contact_setting_edit.php
+%%WWWDIR%%/app/contacts/contact_settings.php
+%%WWWDIR%%/app/contacts/contact_time_delete.php
+%%WWWDIR%%/app/contacts/contact_time_edit.php
+%%WWWDIR%%/app/contacts/contact_timer.php
+%%WWWDIR%%/app/contacts/contact_timer_inc.php
+%%WWWDIR%%/app/contacts/contact_times.php
+%%WWWDIR%%/app/contacts/contact_url_delete.php
+%%WWWDIR%%/app/contacts/contact_url_edit.php
+%%WWWDIR%%/app/contacts/contact_urls.php
+%%WWWDIR%%/app/contacts/contact_user_delete.php
+%%WWWDIR%%/app/contacts/contacts.php
+%%WWWDIR%%/app/contacts/contacts_vcard.php
+%%WWWDIR%%/app/contacts/resources/functions/google_get_contacts.php
+%%WWWDIR%%/app/contacts/resources/functions/google_get_groups.php
+%%WWWDIR%%/app/contacts/resources/images/icon_gcontacts.png
+%%WWWDIR%%/app/contacts/resources/images/icon_gmaps.png
+%%WWWDIR%%/app/contacts/resources/images/icon_timer.png
+%%WWWDIR%%/app/contacts/root.php
+%%WWWDIR%%/app/database_transactions/app_config.php
+%%WWWDIR%%/app/database_transactions/app_languages.php
+%%WWWDIR%%/app/database_transactions/app_menu.php
+%%WWWDIR%%/app/database_transactions/database_transaction_delete.php
+%%WWWDIR%%/app/database_transactions/database_transaction_edit.php
+%%WWWDIR%%/app/database_transactions/database_transactions.php
+%%WWWDIR%%/app/database_transactions/root.php
+%%WWWDIR%%/app/destinations/app_config.php
+%%WWWDIR%%/app/destinations/app_defaults.php
+%%WWWDIR%%/app/destinations/app_languages.php
+%%WWWDIR%%/app/destinations/app_menu.php
+%%WWWDIR%%/app/destinations/destination_delete.php
+%%WWWDIR%%/app/destinations/destination_edit.php
+%%WWWDIR%%/app/destinations/destinations.php
+%%WWWDIR%%/app/destinations/resources/classes/destinations.php
+%%WWWDIR%%/app/destinations/root.php
+%%WWWDIR%%/app/devices/app_config.php
+%%WWWDIR%%/app/devices/app_defaults.php
+%%WWWDIR%%/app/devices/app_languages.php
+%%WWWDIR%%/app/devices/app_menu.php
+%%WWWDIR%%/app/devices/cmd.php
+%%WWWDIR%%/app/devices/device_copy.php
+%%WWWDIR%%/app/devices/device_dashboard.php
+%%WWWDIR%%/app/devices/device_delete.php
+%%WWWDIR%%/app/devices/device_download.php
+%%WWWDIR%%/app/devices/device_edit.php
+%%WWWDIR%%/app/devices/device_key_delete.php
+%%WWWDIR%%/app/devices/device_key_edit.php
+%%WWWDIR%%/app/devices/device_line_delete.php
+%%WWWDIR%%/app/devices/device_line_edit.php
+%%WWWDIR%%/app/devices/device_profile_copy.php
+%%WWWDIR%%/app/devices/device_profile_delete.php
+%%WWWDIR%%/app/devices/device_profile_edit.php
+%%WWWDIR%%/app/devices/device_profiles.php
+%%WWWDIR%%/app/devices/device_setting_delete.php
+%%WWWDIR%%/app/devices/device_setting_edit.php
+%%WWWDIR%%/app/devices/device_settings.php
+%%WWWDIR%%/app/devices/device_vendor_delete.php
+%%WWWDIR%%/app/devices/device_vendor_edit.php
+%%WWWDIR%%/app/devices/device_vendor_function_delete.php
+%%WWWDIR%%/app/devices/device_vendor_function_edit.php
+%%WWWDIR%%/app/devices/device_vendor_functions.php
+%%WWWDIR%%/app/devices/device_vendor_restore.php
+%%WWWDIR%%/app/devices/device_vendors.php
+%%WWWDIR%%/app/devices/devices.php
+%%WWWDIR%%/app/devices/resources/classes/device.php
+%%WWWDIR%%/app/devices/root.php
+%%WWWDIR%%/app/dialplan_inbound/app_config.php
+%%WWWDIR%%/app/dialplan_inbound/app_defaults.php
+%%WWWDIR%%/app/dialplan_inbound/app_languages.php
+%%WWWDIR%%/app/dialplan_inbound/app_menu.php
+%%WWWDIR%%/app/dialplan_inbound/dialplan_inbound_add.php
+%%WWWDIR%%/app/dialplan_inbound/root.php
+%%WWWDIR%%/app/dialplan_outbound/app_config.php
+%%WWWDIR%%/app/dialplan_outbound/app_languages.php
+%%WWWDIR%%/app/dialplan_outbound/app_menu.php
+%%WWWDIR%%/app/dialplan_outbound/dialplan_outbound_add.php
+%%WWWDIR%%/app/dialplan_outbound/root.php
+%%WWWDIR%%/app/dialplans/app_config.php
+%%WWWDIR%%/app/dialplans/app_defaults.php
+%%WWWDIR%%/app/dialplans/app_languages.php
+%%WWWDIR%%/app/dialplans/app_menu.php
+%%WWWDIR%%/app/dialplans/dialplan_add.php
+%%WWWDIR%%/app/dialplans/dialplan_copy.php
+%%WWWDIR%%/app/dialplans/dialplan_delete.php
+%%WWWDIR%%/app/dialplans/dialplan_detail_delete.php
+%%WWWDIR%%/app/dialplans/dialplan_detail_edit.php
+%%WWWDIR%%/app/dialplans/dialplan_edit.php
+%%WWWDIR%%/app/dialplans/dialplan_xml.php
+%%WWWDIR%%/app/dialplans/dialplans.php
+%%WWWDIR%%/app/dialplans/resources/classes/dialplan.php
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/010_caller_details.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/010_user_exists.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/015_caller_details.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/020_call_direction.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/020_variables.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/025_call_limit.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/030_is_local.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/040_call_block.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/050_user_record.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/060_redial.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/070_speed_dial.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/080_default_caller_id.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/200_agent_status.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/210_agent_status_id.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/220_provision.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/230_group-intercept.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/240_page.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/250_conf-xfer.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/250_page-extension.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/260_eavesdrop.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/270_call_privacy.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/280_call_return.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/290_extension_queue.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/290_intercept-ext-polycom.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/290_intercept-ext.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/300_dx.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/310_att_xfer.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/310_extension-to-voicemail.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/310_send_to_voicemail.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/320_vmain.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/320_xfer_vm.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/330_is_transfer.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/330_vmain_user.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/340_cf.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/340_delay_echo.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/350_echo.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/350_please_hold.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/360_is_zrtp_secure.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/360_milliwatt.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/370_is_secure.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/370_tone_stream.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/380_hold_music.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/400_recordings.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/410_freeswitch_conference.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/420_disa.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/430_directory.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/440_wake-up.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/470_valet_park.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/470_valet_park_in.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/475_valet_park_out.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/480_operator.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/485_operator-forward.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/490_do-not-disturb.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/500_call-forward.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/505_call-forward-all.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/510_follow-me.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/530_click_to_call_auto_answer.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/530_talking_clock_date_and_time.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/540_talking_clock_time.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/550_talking_clock_date.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/560_extension_queue.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/570_nway_conference.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/860_bind_digit_action.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/870_cidlookup.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/880_call_screen.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/890_local_extension.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/900_voicemail.xml
+%%WWWDIR%%/app/dialplans/resources/switch/conf/dialplan/999_not-found.xml
+%%WWWDIR%%/app/dialplans/root.php
+%%WWWDIR%%/app/edit/app_config.php
+%%WWWDIR%%/app/edit/app_languages.php
+%%WWWDIR%%/app/edit/app_menu.php
+%%WWWDIR%%/app/edit/clipadd.php
+%%WWWDIR%%/app/edit/clipdelete.php
+%%WWWDIR%%/app/edit/cliplist.php
+%%WWWDIR%%/app/edit/clipoptions.php
+%%WWWDIR%%/app/edit/clipoptionslist.php
+%%WWWDIR%%/app/edit/clipupdate.php
+%%WWWDIR%%/app/edit/filedelete.php
+%%WWWDIR%%/app/edit/filelist.php
+%%WWWDIR%%/app/edit/filenew.php
+%%WWWDIR%%/app/edit/fileoptions.php
+%%WWWDIR%%/app/edit/fileoptionslist.php
+%%WWWDIR%%/app/edit/fileread.php
+%%WWWDIR%%/app/edit/filerename.php
+%%WWWDIR%%/app/edit/filesave.php
+%%WWWDIR%%/app/edit/folderdelete.php
+%%WWWDIR%%/app/edit/foldernew.php
+%%WWWDIR%%/app/edit/footer.php
+%%WWWDIR%%/app/edit/header.php
+%%WWWDIR%%/app/edit/index.php
+%%WWWDIR%%/app/edit/readme.txt
+%%WWWDIR%%/app/edit/resources/images/blank.gif
+%%WWWDIR%%/app/edit/resources/images/icon_file.png
+%%WWWDIR%%/app/edit/resources/images/icon_folder.png
+%%WWWDIR%%/app/edit/resources/images/icon_gear.png
+%%WWWDIR%%/app/edit/resources/images/icon_goto.png
+%%WWWDIR%%/app/edit/resources/images/icon_indenting.png
+%%WWWDIR%%/app/edit/resources/images/icon_invisibles.png
+%%WWWDIR%%/app/edit/resources/images/icon_numbering.png
+%%WWWDIR%%/app/edit/resources/images/icon_replace.png
+%%WWWDIR%%/app/edit/resources/images/icon_save.png
+%%WWWDIR%%/app/edit/resources/images/icon_sidebar.png
+%%WWWDIR%%/app/edit/root.php
+%%WWWDIR%%/app/email_templates/app_config.php
+%%WWWDIR%%/app/email_templates/app_defaults.php
+%%WWWDIR%%/app/email_templates/app_languages.php
+%%WWWDIR%%/app/email_templates/app_menu.php
+%%WWWDIR%%/app/email_templates/email_template_delete.php
+%%WWWDIR%%/app/email_templates/email_template_edit.php
+%%WWWDIR%%/app/email_templates/email_templates.php
+%%WWWDIR%%/app/email_templates/resources/classes/email_templates.php
+%%WWWDIR%%/app/email_templates/root.php
+%%WWWDIR%%/app/emails/app_config.php
+%%WWWDIR%%/app/emails/app_languages.php
+%%WWWDIR%%/app/emails/app_menu.php
+%%WWWDIR%%/app/emails/email_cron.php
+%%WWWDIR%%/app/emails/email_delete.php
+%%WWWDIR%%/app/emails/email_view.php
+%%WWWDIR%%/app/emails/emails.php
+%%WWWDIR%%/app/emails/root.php
+%%WWWDIR%%/app/exec/app_config.php
+%%WWWDIR%%/app/exec/app_languages.php
+%%WWWDIR%%/app/exec/app_menu.php
+%%WWWDIR%%/app/exec/exec.php
+%%WWWDIR%%/app/exec/resources/images/blank.gif
+%%WWWDIR%%/app/exec/resources/images/icon_file.png
+%%WWWDIR%%/app/exec/resources/images/icon_folder.png
+%%WWWDIR%%/app/exec/resources/images/icon_gear.png
+%%WWWDIR%%/app/exec/resources/images/icon_goto.png
+%%WWWDIR%%/app/exec/resources/images/icon_indenting.png
+%%WWWDIR%%/app/exec/resources/images/icon_invisibles.png
+%%WWWDIR%%/app/exec/resources/images/icon_numbering.png
+%%WWWDIR%%/app/exec/resources/images/icon_replace.png
+%%WWWDIR%%/app/exec/root.php
+%%WWWDIR%%/app/exec/sql_backup.php
+%%WWWDIR%%/app/exec/sql_db_conversion.php
+%%WWWDIR%%/app/exec/sql_query_db.php
+%%WWWDIR%%/app/exec/sql_query_pdo.php
+%%WWWDIR%%/app/exec/sql_query_result.php
+%%WWWDIR%%/app/extensions/app_config.php
+%%WWWDIR%%/app/extensions/app_defaults.php
+%%WWWDIR%%/app/extensions/app_languages.php
+%%WWWDIR%%/app/extensions/app_menu.php
+%%WWWDIR%%/app/extensions/extension_copy.php
+%%WWWDIR%%/app/extensions/extension_dashboard.php
+%%WWWDIR%%/app/extensions/extension_delete.php
+%%WWWDIR%%/app/extensions/extension_download.php
+%%WWWDIR%%/app/extensions/extension_edit.php
+%%WWWDIR%%/app/extensions/extensions.php
+%%WWWDIR%%/app/extensions/resources/classes/extension.php
+%%WWWDIR%%/app/extensions/root.php
+%%WWWDIR%%/app/fanvil/app_config.php
+%%WWWDIR%%/app/fanvil/resources/firmware/README.md
+%%WWWDIR%%/app/fax/app_config.php
+%%WWWDIR%%/app/fax/app_defaults.php
+%%WWWDIR%%/app/fax/app_languages.php
+%%WWWDIR%%/app/fax/app_menu.php
+%%WWWDIR%%/app/fax/fax.php
+%%WWWDIR%%/app/fax/fax_active.php
+%%WWWDIR%%/app/fax/fax_active_exec.php
+%%WWWDIR%%/app/fax/fax_active_inc.php
+%%WWWDIR%%/app/fax/fax_copy.php
+%%WWWDIR%%/app/fax/fax_delete.php
+%%WWWDIR%%/app/fax/fax_edit.php
+%%WWWDIR%%/app/fax/fax_emails.php
+%%WWWDIR%%/app/fax/fax_file_delete.php
+%%WWWDIR%%/app/fax/fax_files.php
+%%WWWDIR%%/app/fax/fax_files_remote.php
+%%WWWDIR%%/app/fax/fax_log_delete.php
+%%WWWDIR%%/app/fax/fax_log_view.php
+%%WWWDIR%%/app/fax/fax_logs.php
+%%WWWDIR%%/app/fax/fax_send.php
+%%WWWDIR%%/app/fax/resources/classes/fax.php
+%%WWWDIR%%/app/fax/resources/functions/object_to_array.php
+%%WWWDIR%%/app/fax/resources/functions/parse_attachments.php
+%%WWWDIR%%/app/fax/resources/functions/parse_message.php
+%%WWWDIR%%/app/fax/resources/images/logo.jpg
+%%WWWDIR%%/app/fax/resources/images/refresh_active.gif
+%%WWWDIR%%/app/fax/resources/images/refresh_paused.png
+%%WWWDIR%%/app/fax/root.php
+%%WWWDIR%%/app/fifo/app_config.php
+%%WWWDIR%%/app/fifo/app_languages.php
+%%WWWDIR%%/app/fifo/app_menu.php
+%%WWWDIR%%/app/fifo/fifo_add.php
+%%WWWDIR%%/app/fifo/root.php
+%%WWWDIR%%/app/fifo_list/app_config.php
+%%WWWDIR%%/app/fifo_list/app_languages.php
+%%WWWDIR%%/app/fifo_list/app_menu.php
+%%WWWDIR%%/app/fifo_list/fifo_exec.php
+%%WWWDIR%%/app/fifo_list/fifo_interactive.php
+%%WWWDIR%%/app/fifo_list/fifo_interactive_inc.php
+%%WWWDIR%%/app/fifo_list/fifo_list.php
+%%WWWDIR%%/app/fifo_list/fifo_list_inc.php
+%%WWWDIR%%/app/fifo_list/root.php
+%%WWWDIR%%/app/follow_me/app_config.php
+%%WWWDIR%%/app/follow_me/app_menu.php
+%%WWWDIR%%/app/follow_me/root.php
+%%WWWDIR%%/app/gateways/app_config.php
+%%WWWDIR%%/app/gateways/app_languages.php
+%%WWWDIR%%/app/gateways/app_menu.php
+%%WWWDIR%%/app/gateways/gateway_copy.php
+%%WWWDIR%%/app/gateways/gateway_delete.php
+%%WWWDIR%%/app/gateways/gateway_edit.php
+%%WWWDIR%%/app/gateways/gateways.php
+%%WWWDIR%%/app/gateways/root.php
+%%WWWDIR%%/app/grandstream/app_config.php
+%%WWWDIR%%/app/htek/app_config.php
+%%WWWDIR%%/app/htek/resources/firmware/README.md
+%%WWWDIR%%/app/ivr_menus/app_config.php
+%%WWWDIR%%/app/ivr_menus/app_defaults.php
+%%WWWDIR%%/app/ivr_menus/app_languages.php
+%%WWWDIR%%/app/ivr_menus/app_menu.php
+%%WWWDIR%%/app/ivr_menus/ivr_menu_copy.php
+%%WWWDIR%%/app/ivr_menus/ivr_menu_delete.php
+%%WWWDIR%%/app/ivr_menus/ivr_menu_edit.php
+%%WWWDIR%%/app/ivr_menus/ivr_menu_option_delete.php
+%%WWWDIR%%/app/ivr_menus/ivr_menu_options.php
+%%WWWDIR%%/app/ivr_menus/ivr_menus.php
+%%WWWDIR%%/app/ivr_menus/resources/classes/ivr_menu.php
+%%WWWDIR%%/app/ivr_menus/resources/functions/ivr_menu_xml.php
+%%WWWDIR%%/app/ivr_menus/root.php
+%%WWWDIR%%/app/log_viewer/app_config.php
+%%WWWDIR%%/app/log_viewer/app_languages.php
+%%WWWDIR%%/app/log_viewer/app_menu.php
+%%WWWDIR%%/app/log_viewer/log_viewer.php
+%%WWWDIR%%/app/log_viewer/root.php
+%%WWWDIR%%/app/meetings/app_config.php
+%%WWWDIR%%/app/meetings/app_menu.php
+%%WWWDIR%%/app/modules/app_config.php
+%%WWWDIR%%/app/modules/app_defaults.php
+%%WWWDIR%%/app/modules/app_languages.php
+%%WWWDIR%%/app/modules/app_menu.php
+%%WWWDIR%%/app/modules/module_delete.php
+%%WWWDIR%%/app/modules/module_edit.php
+%%WWWDIR%%/app/modules/modules.php
+%%WWWDIR%%/app/modules/resources/classes/modules.php
+%%WWWDIR%%/app/modules/root.php
+%%WWWDIR%%/app/music_on_hold/app_config.php
+%%WWWDIR%%/app/music_on_hold/app_defaults.php
+%%WWWDIR%%/app/music_on_hold/app_languages.php
+%%WWWDIR%%/app/music_on_hold/app_menu.php
+%%WWWDIR%%/app/music_on_hold/music_on_hold.php
+%%WWWDIR%%/app/music_on_hold/music_on_hold_delete.php
+%%WWWDIR%%/app/music_on_hold/music_on_hold_edit.php
+%%WWWDIR%%/app/music_on_hold/resources/classes/switch_music_on_hold.php
+%%WWWDIR%%/app/music_on_hold/root.php
+%%WWWDIR%%/app/number_translations/app_config.php
+%%WWWDIR%%/app/number_translations/app_defaults.php
+%%WWWDIR%%/app/number_translations/app_languages.php
+%%WWWDIR%%/app/number_translations/app_menu.php
+%%WWWDIR%%/app/number_translations/cmd.php
+%%WWWDIR%%/app/number_translations/number_translation_delete.php
+%%WWWDIR%%/app/number_translations/number_translation_edit.php
+%%WWWDIR%%/app/number_translations/number_translations.php
+%%WWWDIR%%/app/number_translations/resources/classes/number_translations.php
+%%WWWDIR%%/app/number_translations/resources/switch/conf/number_translation/GB_national_to_e164.xml
+%%WWWDIR%%/app/number_translations/resources/switch/conf/number_translation/e164_to_GB_national.xml
+%%WWWDIR%%/app/number_translations/resources/switch/conf/number_translation/remove_leading_plus.xml
+%%WWWDIR%%/app/number_translations/resources/switch/conf/number_translation/strip_non_digits.xml
+%%WWWDIR%%/app/number_translations/resources/switch/conf/number_translation/strip_symbols.xml
+%%WWWDIR%%/app/number_translations/root.php
+%%WWWDIR%%/app/operator_panel/app_config.php
+%%WWWDIR%%/app/operator_panel/app_languages.php
+%%WWWDIR%%/app/operator_panel/app_menu.php
+%%WWWDIR%%/app/operator_panel/autocomplete.php
+%%WWWDIR%%/app/operator_panel/exec.php
+%%WWWDIR%%/app/operator_panel/index.php
+%%WWWDIR%%/app/operator_panel/index_inc.php
+%%WWWDIR%%/app/operator_panel/resources/functions/get_call_activity.php
+%%WWWDIR%%/app/operator_panel/resources/images/eavesdrop.png
+%%WWWDIR%%/app/operator_panel/resources/images/inbound.png
+%%WWWDIR%%/app/operator_panel/resources/images/keypad_call.png
+%%WWWDIR%%/app/operator_panel/resources/images/keypad_transfer.png
+%%WWWDIR%%/app/operator_panel/resources/images/kill.png
+%%WWWDIR%%/app/operator_panel/resources/images/outbound.png
+%%WWWDIR%%/app/operator_panel/resources/images/record.png
+%%WWWDIR%%/app/operator_panel/resources/images/recording.png
+%%WWWDIR%%/app/operator_panel/resources/images/refresh_active.gif
+%%WWWDIR%%/app/operator_panel/resources/images/refresh_paused.png
+%%WWWDIR%%/app/operator_panel/resources/images/status_available.png
+%%WWWDIR%%/app/operator_panel/resources/images/status_available_on_demand.png
+%%WWWDIR%%/app/operator_panel/resources/images/status_do_not_disturb.png
+%%WWWDIR%%/app/operator_panel/resources/images/status_logged_out.png
+%%WWWDIR%%/app/operator_panel/resources/images/status_on_break.png
+%%WWWDIR%%/app/operator_panel/root.php
+%%WWWDIR%%/app/phrases/app_config.php
+%%WWWDIR%%/app/phrases/app_defaults.php
+%%WWWDIR%%/app/phrases/app_languages.php
+%%WWWDIR%%/app/phrases/app_menu.php
+%%WWWDIR%%/app/phrases/phrase_delete.php
+%%WWWDIR%%/app/phrases/phrase_detail_delete.php
+%%WWWDIR%%/app/phrases/phrase_edit.php
+%%WWWDIR%%/app/phrases/phrases.php
+%%WWWDIR%%/app/phrases/resources/functions/save_phrases_xml.php
+%%WWWDIR%%/app/phrases/root.php
+%%WWWDIR%%/app/pin_numbers/app_config.php
+%%WWWDIR%%/app/pin_numbers/app_languages.php
+%%WWWDIR%%/app/pin_numbers/app_menu.php
+%%WWWDIR%%/app/pin_numbers/pin_download.php
+%%WWWDIR%%/app/pin_numbers/pin_number_delete.php
+%%WWWDIR%%/app/pin_numbers/pin_number_edit.php
+%%WWWDIR%%/app/pin_numbers/pin_numbers.php
+%%WWWDIR%%/app/pin_numbers/root.php
+%%WWWDIR%%/app/polycom/app_config.php
+%%WWWDIR%%/app/providers/app_config.php
+%%WWWDIR%%/app/providers/app_languages.php
+%%WWWDIR%%/app/providers/app_menu.php
+%%WWWDIR%%/app/providers/provider_delete.php
+%%WWWDIR%%/app/providers/provider_setup.php
+%%WWWDIR%%/app/providers/providers.php
+%%WWWDIR%%/app/providers/resources/classes/providers.php
+%%WWWDIR%%/app/providers/resources/images/logo_voicetel.png
+%%WWWDIR%%/app/providers/resources/images/skyetel-logo.png
+%%WWWDIR%%/app/providers/root.php
+%%WWWDIR%%/app/provision/app_config.php
+%%WWWDIR%%/app/provision/app_defaults.php
+%%WWWDIR%%/app/provision/app_menu.php
+%%WWWDIR%%/app/provision/index.php
+%%WWWDIR%%/app/provision/resources/classes/provision.php
+%%WWWDIR%%/app/provision/resources/functions/device_by.php
+%%WWWDIR%%/app/provision/root.php
+%%WWWDIR%%/app/recordings/app_config.php
+%%WWWDIR%%/app/recordings/app_defaults.php
+%%WWWDIR%%/app/recordings/app_languages.php
+%%WWWDIR%%/app/recordings/app_menu.php
+%%WWWDIR%%/app/recordings/recording_delete.php
+%%WWWDIR%%/app/recordings/recording_edit.php
+%%WWWDIR%%/app/recordings/recording_play.php
+%%WWWDIR%%/app/recordings/recordings.php
+%%WWWDIR%%/app/recordings/resources/classes/switch_recordings.php
+%%WWWDIR%%/app/recordings/root.php
+%%WWWDIR%%/app/registrations/app_config.php
+%%WWWDIR%%/app/registrations/app_languages.php
+%%WWWDIR%%/app/registrations/app_menu.php
+%%WWWDIR%%/app/registrations/cmd.php
+%%WWWDIR%%/app/registrations/registration_reload.php
+%%WWWDIR%%/app/registrations/registrations.php
+%%WWWDIR%%/app/registrations/resources/classes/registrations.php
+%%WWWDIR%%/app/registrations/resources/images/refresh_active.gif
+%%WWWDIR%%/app/registrations/resources/images/refresh_paused.png
+%%WWWDIR%%/app/registrations/root.php
+%%WWWDIR%%/app/ring_groups/app_config.php
+%%WWWDIR%%/app/ring_groups/app_defaults.php
+%%WWWDIR%%/app/ring_groups/app_languages.php
+%%WWWDIR%%/app/ring_groups/app_menu.php
+%%WWWDIR%%/app/ring_groups/ring_group_delete.php
+%%WWWDIR%%/app/ring_groups/ring_group_destination_delete.php
+%%WWWDIR%%/app/ring_groups/ring_group_destination_edit.php
+%%WWWDIR%%/app/ring_groups/ring_group_edit.php
+%%WWWDIR%%/app/ring_groups/ring_group_forward.php
+%%WWWDIR%%/app/ring_groups/ring_groups.php
+%%WWWDIR%%/app/ring_groups/root.php
+%%WWWDIR%%/app/scripts/app_defaults.php
+%%WWWDIR%%/app/scripts/resources/classes/scripts.php
+%%WWWDIR%%/app/services/app_config.php
+%%WWWDIR%%/app/services/app_languages.php
+%%WWWDIR%%/app/services/app_menu.php
+%%WWWDIR%%/app/services/resources/classes/lib_win.php
+%%WWWDIR%%/app/services/root.php
+%%WWWDIR%%/app/services/service_delete.php
+%%WWWDIR%%/app/services/service_edit.php
+%%WWWDIR%%/app/services/services.php
+%%WWWDIR%%/app/settings/app_config.php
+%%WWWDIR%%/app/settings/app_defaults.php
+%%WWWDIR%%/app/settings/app_languages.php
+%%WWWDIR%%/app/settings/app_menu.php
+%%WWWDIR%%/app/settings/root.php
+%%WWWDIR%%/app/settings/setting_edit.php
+%%WWWDIR%%/app/sip_profiles/app_config.php
+%%WWWDIR%%/app/sip_profiles/app_defaults.php
+%%WWWDIR%%/app/sip_profiles/app_languages.php
+%%WWWDIR%%/app/sip_profiles/app_menu.php
+%%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/default.xml
+%%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/external-ipv6.xml
+%%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/external.xml
+%%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/internal-ipv6.xml
+%%WWWDIR%%/app/sip_profiles/resources/xml/sip_profiles/internal.xml
+%%WWWDIR%%/app/sip_profiles/root.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_copy.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_delete.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_domain_delete.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_edit.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_setting_delete.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_setting_edit.php
+%%WWWDIR%%/app/sip_profiles/sip_profile_settings.php
+%%WWWDIR%%/app/sip_profiles/sip_profiles.php
+%%WWWDIR%%/app/sip_status/app_config.php
+%%WWWDIR%%/app/sip_status/app_languages.php
+%%WWWDIR%%/app/sip_status/app_menu.php
+%%WWWDIR%%/app/sip_status/cmd.php
+%%WWWDIR%%/app/sip_status/root.php
+%%WWWDIR%%/app/sip_status/sip_status.php
+%%WWWDIR%%/app/snom/app_config.php
+%%WWWDIR%%/app/streams/app_config.php
+%%WWWDIR%%/app/streams/app_languages.php
+%%WWWDIR%%/app/streams/app_menu.php
+%%WWWDIR%%/app/streams/resources/classes/streams.php
+%%WWWDIR%%/app/streams/root.php
+%%WWWDIR%%/app/streams/stream_delete.php
+%%WWWDIR%%/app/streams/stream_edit.php
+%%WWWDIR%%/app/streams/streams.php
+%%WWWDIR%%/app/system/app_config.php
+%%WWWDIR%%/app/system/app_languages.php
+%%WWWDIR%%/app/system/app_menu.php
+%%WWWDIR%%/app/system/root.php
+%%WWWDIR%%/app/system/system.php
+%%WWWDIR%%/app/time_conditions/app_config.php
+%%WWWDIR%%/app/time_conditions/app_defaults.php
+%%WWWDIR%%/app/time_conditions/app_languages.php
+%%WWWDIR%%/app/time_conditions/app_menu.php
+%%WWWDIR%%/app/time_conditions/root.php
+%%WWWDIR%%/app/time_conditions/time_condition_delete.php
+%%WWWDIR%%/app/time_conditions/time_condition_edit.php
+%%WWWDIR%%/app/time_conditions/time_conditions.php
+%%WWWDIR%%/app/tones/app_config.php
+%%WWWDIR%%/app/tones/app_defaults.php
+%%WWWDIR%%/app/tones/app_languages.php
+%%WWWDIR%%/app/vars/app_config.php
+%%WWWDIR%%/app/vars/app_defaults.php
+%%WWWDIR%%/app/vars/app_languages.php
+%%WWWDIR%%/app/vars/app_menu.php
+%%WWWDIR%%/app/vars/root.php
+%%WWWDIR%%/app/vars/var_delete.php
+%%WWWDIR%%/app/vars/var_edit.php
+%%WWWDIR%%/app/vars/vars.php
+%%WWWDIR%%/app/vars/vars_textarea.php
+%%WWWDIR%%/app/voicemail_greetings/app_config.php
+%%WWWDIR%%/app/voicemail_greetings/app_defaults.php
+%%WWWDIR%%/app/voicemail_greetings/app_languages.php
+%%WWWDIR%%/app/voicemail_greetings/app_menu.php
+%%WWWDIR%%/app/voicemail_greetings/root.php
+%%WWWDIR%%/app/voicemail_greetings/voicemail_greeting_delete.php
+%%WWWDIR%%/app/voicemail_greetings/voicemail_greeting_edit.php
+%%WWWDIR%%/app/voicemail_greetings/voicemail_greetings.php
+%%WWWDIR%%/app/voicemails/app_config.php
+%%WWWDIR%%/app/voicemails/app_languages.php
+%%WWWDIR%%/app/voicemails/app_menu.php
+%%WWWDIR%%/app/voicemails/resources/classes/voicemail.php
+%%WWWDIR%%/app/voicemails/root.php
+%%WWWDIR%%/app/voicemails/voicemail_delete.php
+%%WWWDIR%%/app/voicemails/voicemail_edit.php
+%%WWWDIR%%/app/voicemails/voicemail_message_delete.php
+%%WWWDIR%%/app/voicemails/voicemail_message_edit.php
+%%WWWDIR%%/app/voicemails/voicemail_message_toggle.php
+%%WWWDIR%%/app/voicemails/voicemail_messages.php
+%%WWWDIR%%/app/voicemails/voicemail_option_delete.php
+%%WWWDIR%%/app/voicemails/voicemail_option_edit.php
+%%WWWDIR%%/app/voicemails/voicemails.php
+%%WWWDIR%%/app/xml_cdr/app_config.php
+%%WWWDIR%%/app/xml_cdr/app_defaults.php
+%%WWWDIR%%/app/xml_cdr/app_languages.php
+%%WWWDIR%%/app/xml_cdr/app_menu.php
+%%WWWDIR%%/app/xml_cdr/download.php
+%%WWWDIR%%/app/xml_cdr/report.php
+%%WWWDIR%%/app/xml_cdr/resources/classes/xml_cdr.php
+%%WWWDIR%%/app/xml_cdr/root.php
+%%WWWDIR%%/app/xml_cdr/v_xml_cdr_import.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_delete.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_details.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_export.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_extension_summary.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_import.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_import_update.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_inc.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_search.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_statistics.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_statistics_csv.php
+%%WWWDIR%%/app/xml_cdr/xml_cdr_statistics_inc.php
+%%WWWDIR%%/app/yealink/app_config.php
+%%WWWDIR%%/app/yealink/resources/firmware/README.md
+%%WWWDIR%%/core/apps/app_config.php
+%%WWWDIR%%/core/apps/app_languages.php
+%%WWWDIR%%/core/apps/app_menu.php
+%%WWWDIR%%/core/apps/apps.php
+%%WWWDIR%%/core/apps/apps_delete.php
+%%WWWDIR%%/core/apps/apps_edit.php
+%%WWWDIR%%/core/apps/root.php
+%%WWWDIR%%/core/authentication/app_config.php
+%%WWWDIR%%/core/authentication/resources/classes/authentication.php
+%%WWWDIR%%/core/authentication/resources/classes/plugins/database.php
+%%WWWDIR%%/core/authentication/resources/classes/plugins/ldap.php
+%%WWWDIR%%/core/authentication/root.php
+%%WWWDIR%%/core/databases/app_config.php
+%%WWWDIR%%/core/databases/app_defaults.php
+%%WWWDIR%%/core/databases/app_languages.php
+%%WWWDIR%%/core/databases/app_menu.php
+%%WWWDIR%%/core/databases/database_delete.php
+%%WWWDIR%%/core/databases/database_edit.php
+%%WWWDIR%%/core/databases/databases.php
+%%WWWDIR%%/core/databases/root.php
+%%WWWDIR%%/core/default_settings/app_config.php
+%%WWWDIR%%/core/default_settings/app_defaults.php
+%%WWWDIR%%/core/default_settings/app_languages.php
+%%WWWDIR%%/core/default_settings/app_menu.php
+%%WWWDIR%%/core/default_settings/default_setting_edit.php
+%%WWWDIR%%/core/default_settings/default_setting_toggle.php
+%%WWWDIR%%/core/default_settings/default_settings.php
+%%WWWDIR%%/core/default_settings/default_settings_reload.php
+%%WWWDIR%%/core/default_settings/root.php
+%%WWWDIR%%/core/domain_settings/app_config.php
+%%WWWDIR%%/core/domain_settings/app_defaults.php
+%%WWWDIR%%/core/domain_settings/app_languages.php
+%%WWWDIR%%/core/domain_settings/app_menu.php
+%%WWWDIR%%/core/domain_settings/domain_delete.php
+%%WWWDIR%%/core/domain_settings/domain_edit.php
+%%WWWDIR%%/core/domain_settings/domain_setting_delete.php
+%%WWWDIR%%/core/domain_settings/domain_setting_edit.php
+%%WWWDIR%%/core/domain_settings/domain_settings.php
+%%WWWDIR%%/core/domain_settings/domains.php
+%%WWWDIR%%/core/domain_settings/root.php
+%%WWWDIR%%/core/events/resources/classes/events.php
+%%WWWDIR%%/core/groups/app_config.php
+%%WWWDIR%%/core/groups/app_defaults.php
+%%WWWDIR%%/core/groups/app_languages.php
+%%WWWDIR%%/core/groups/app_menu.php
+%%WWWDIR%%/core/groups/group_permissions.php
+%%WWWDIR%%/core/groups/groupadd.php
+%%WWWDIR%%/core/groups/groupdelete.php
+%%WWWDIR%%/core/groups/groupedit.php
+%%WWWDIR%%/core/groups/groupmemberadd.php
+%%WWWDIR%%/core/groups/groupmemberdelete.php
+%%WWWDIR%%/core/groups/groupmembers.php
+%%WWWDIR%%/core/groups/groups.php
+%%WWWDIR%%/core/groups/permissions_copy.php
+%%WWWDIR%%/core/groups/permissions_default.php
+%%WWWDIR%%/core/groups/resources/classes/permission.php
+%%WWWDIR%%/core/groups/root.php
+%%WWWDIR%%/core/install/app_config.php
+%%WWWDIR%%/core/install/app_languages.php
+%%WWWDIR%%/core/install/app_menu.php
+%%WWWDIR%%/core/install/index.php
+%%WWWDIR%%/core/install/install.php
+%%WWWDIR%%/core/install/resources/classes/detect_switch.php
+%%WWWDIR%%/core/install/resources/classes/global_settings.php
+%%WWWDIR%%/core/install/resources/classes/install_fusionpbx.php
+%%WWWDIR%%/core/install/resources/classes/install_switch.php
+%%WWWDIR%%/core/install/resources/classes/iso_countries.php
+%%WWWDIR%%/core/install/resources/images/flags/Afghanistan.png
+%%WWWDIR%%/core/install/resources/images/flags/Aland Islands.png
+%%WWWDIR%%/core/install/resources/images/flags/Albania.png
+%%WWWDIR%%/core/install/resources/images/flags/Algeria.png
+%%WWWDIR%%/core/install/resources/images/flags/American Samoa.png
+%%WWWDIR%%/core/install/resources/images/flags/Andorra.png
+%%WWWDIR%%/core/install/resources/images/flags/Angola.png
+%%WWWDIR%%/core/install/resources/images/flags/Anguilla.png
+%%WWWDIR%%/core/install/resources/images/flags/Antigua and Barbuda.png
+%%WWWDIR%%/core/install/resources/images/flags/Argentina.png
+%%WWWDIR%%/core/install/resources/images/flags/Armenia.png
+%%WWWDIR%%/core/install/resources/images/flags/Aruba.png
+%%WWWDIR%%/core/install/resources/images/flags/Australia.png
+%%WWWDIR%%/core/install/resources/images/flags/Austria.png
+%%WWWDIR%%/core/install/resources/images/flags/Azerbaijan.png
+%%WWWDIR%%/core/install/resources/images/flags/Bahamas.png
+%%WWWDIR%%/core/install/resources/images/flags/Bahrain.png
+%%WWWDIR%%/core/install/resources/images/flags/Bangladesh.png
+%%WWWDIR%%/core/install/resources/images/flags/Barbados.png
+%%WWWDIR%%/core/install/resources/images/flags/Belarus.png
+%%WWWDIR%%/core/install/resources/images/flags/Belgium.png
+%%WWWDIR%%/core/install/resources/images/flags/Belize.png
+%%WWWDIR%%/core/install/resources/images/flags/Benin.png
+%%WWWDIR%%/core/install/resources/images/flags/Bermuda.png
+%%WWWDIR%%/core/install/resources/images/flags/Bhutan.png
+%%WWWDIR%%/core/install/resources/images/flags/Bolivia, Plurinational State of.png
+%%WWWDIR%%/core/install/resources/images/flags/Bosnia and Herzegovina.png
+%%WWWDIR%%/core/install/resources/images/flags/Botswana.png
+%%WWWDIR%%/core/install/resources/images/flags/Bouvet Island.png
+%%WWWDIR%%/core/install/resources/images/flags/Brazil.png
+%%WWWDIR%%/core/install/resources/images/flags/British Indian Ocean Territory.png
+%%WWWDIR%%/core/install/resources/images/flags/Brunei Darussalam.png

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-head mailing list