Added Admin -> Settings Containers to admin web interface to allow more easy

configuration of back end scripts and Dispo Email sending

Added agc/dispo_send_email.php script to be used with the Dispo Call URL
 option in campaigns and in-groups.

git-svn-id: svn://192.168.202.10@2368 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2015-08-06 21:57:16 +00:00
parent 558e927a77
commit 502eadb6f4
8 changed files with 1004 additions and 13 deletions
+10
View File
@@ -261,3 +261,13 @@ ALTER TABLE vicidial_inbound_groups ADD wait_time_lead_reset ENUM('Y','N') defau
ALTER TABLE vicidial_inbound_groups ADD hold_time_lead_reset ENUM('Y','N') default 'N';
UPDATE system_settings SET db_schema_version='1426',db_schema_update_date=NOW() where db_schema_version < 1426;
CREATE TABLE vicidial_settings_containers (
container_id VARCHAR(40) PRIMARY KEY NOT NULL,
container_notes VARCHAR(255) default '',
container_type ENUM('OTHER','PERL_CLI','EMAIL_TEMPLATE') default 'OTHER',
user_group VARCHAR(20) default '---ALL---',
container_entry MEDIUMTEXT
) ENGINE=MyISAM CHARSET=utf8 COLLATE=utf8_unicode_ci;
UPDATE system_settings SET db_schema_version='1427',db_schema_update_date=NOW() where db_schema_version < 1427;