Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../ostic
File: ostic.sql
[0] Fix | Delete
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
[1] Fix | Delete
SET time_zone = "+00:00";
[2] Fix | Delete
[3] Fix | Delete
[4] Fix | Delete
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
[5] Fix | Delete
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
[6] Fix | Delete
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
[7] Fix | Delete
/*!40101 SET NAMES utf8 */;
[8] Fix | Delete
[9] Fix | Delete
--
[10] Fix | Delete
-- Database: `ostic1181`
[11] Fix | Delete
--
[12] Fix | Delete
[13] Fix | Delete
-- --------------------------------------------------------
[14] Fix | Delete
[15] Fix | Delete
--
[16] Fix | Delete
-- Table structure for table `[[dbprefix]]api_key`
[17] Fix | Delete
--
[18] Fix | Delete
[19] Fix | Delete
CREATE TABLE `[[dbprefix]]api_key` (
[20] Fix | Delete
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
[21] Fix | Delete
`isactive` tinyint(1) NOT NULL DEFAULT '1',
[22] Fix | Delete
`ipaddr` varchar(64) NOT NULL,
[23] Fix | Delete
`apikey` varchar(255) NOT NULL,
[24] Fix | Delete
`can_create_tickets` tinyint(1) unsigned NOT NULL DEFAULT '1',
[25] Fix | Delete
`can_exec_cron` tinyint(1) unsigned NOT NULL DEFAULT '1',
[26] Fix | Delete
`notes` text,
[27] Fix | Delete
`updated` datetime NOT NULL,
[28] Fix | Delete
`created` datetime NOT NULL,
[29] Fix | Delete
PRIMARY KEY (`id`),
[30] Fix | Delete
UNIQUE KEY `apikey` (`apikey`),
[31] Fix | Delete
KEY `ipaddr` (`ipaddr`)
[32] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[33] Fix | Delete
[34] Fix | Delete
-- --------------------------------------------------------
[35] Fix | Delete
[36] Fix | Delete
--
[37] Fix | Delete
-- Table structure for table `[[dbprefix]]attachment`
[38] Fix | Delete
--
[39] Fix | Delete
[40] Fix | Delete
CREATE TABLE `[[dbprefix]]attachment` (
[41] Fix | Delete
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
[42] Fix | Delete
`object_id` int(11) unsigned NOT NULL,
[43] Fix | Delete
`type` char(1) NOT NULL,
[44] Fix | Delete
`file_id` int(11) unsigned NOT NULL,
[45] Fix | Delete
`name` varchar(255) DEFAULT NULL,
[46] Fix | Delete
`inline` tinyint(1) unsigned NOT NULL DEFAULT '0',
[47] Fix | Delete
`lang` varchar(16) DEFAULT NULL,
[48] Fix | Delete
PRIMARY KEY (`id`),
[49] Fix | Delete
UNIQUE KEY `file-type` (`object_id`,`file_id`,`type`),
[50] Fix | Delete
UNIQUE KEY `file_object` (`file_id`,`object_id`)
[51] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
[52] Fix | Delete
[53] Fix | Delete
--
[54] Fix | Delete
-- Dumping data for table `[[dbprefix]]attachment`
[55] Fix | Delete
--
[56] Fix | Delete
[57] Fix | Delete
INSERT INTO `[[dbprefix]]attachment` VALUES
[58] Fix | Delete
(1, 1, 'C', 2, NULL, 0, NULL),
[59] Fix | Delete
(2, 8, 'T', 1, NULL, 1, NULL),
[60] Fix | Delete
(3, 9, 'T', 1, NULL, 1, NULL),
[61] Fix | Delete
(4, 10, 'T', 1, NULL, 1, NULL),
[62] Fix | Delete
(5, 11, 'T', 1, NULL, 1, NULL),
[63] Fix | Delete
(6, 12, 'T', 1, NULL, 1, NULL),
[64] Fix | Delete
(7, 13, 'T', 1, NULL, 1, NULL),
[65] Fix | Delete
(8, 14, 'T', 1, NULL, 1, NULL),
[66] Fix | Delete
(9, 16, 'T', 1, NULL, 1, NULL),
[67] Fix | Delete
(10, 17, 'T', 1, NULL, 1, NULL),
[68] Fix | Delete
(11, 18, 'T', 1, NULL, 1, NULL),
[69] Fix | Delete
(12, 19, 'T', 1, NULL, 1, NULL);
[70] Fix | Delete
[71] Fix | Delete
-- --------------------------------------------------------
[72] Fix | Delete
[73] Fix | Delete
--
[74] Fix | Delete
-- Table structure for table `[[dbprefix]]canned_response`
[75] Fix | Delete
--
[76] Fix | Delete
[77] Fix | Delete
CREATE TABLE `[[dbprefix]]canned_response` (
[78] Fix | Delete
`canned_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
[79] Fix | Delete
`dept_id` int(10) unsigned NOT NULL DEFAULT '0',
[80] Fix | Delete
`isenabled` tinyint(1) unsigned NOT NULL DEFAULT '1',
[81] Fix | Delete
`title` varchar(255) NOT NULL DEFAULT '',
[82] Fix | Delete
`response` text NOT NULL,
[83] Fix | Delete
`lang` varchar(16) NOT NULL DEFAULT 'en_US',
[84] Fix | Delete
`notes` text,
[85] Fix | Delete
`created` datetime NOT NULL,
[86] Fix | Delete
`updated` datetime NOT NULL,
[87] Fix | Delete
PRIMARY KEY (`canned_id`),
[88] Fix | Delete
UNIQUE KEY `title` (`title`),
[89] Fix | Delete
KEY `dept_id` (`dept_id`),
[90] Fix | Delete
KEY `active` (`isenabled`)
[91] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
[92] Fix | Delete
[93] Fix | Delete
--
[94] Fix | Delete
-- Dumping data for table `[[dbprefix]]canned_response`
[95] Fix | Delete
--
[96] Fix | Delete
[97] Fix | Delete
INSERT INTO `[[dbprefix]]canned_response` VALUES
[98] Fix | Delete
(1, 0, 1, 'What is osTicket (sample)?', 'osTicket is a widely-used open source support ticket system, an\nattractive alternative to higher-cost and complex customer support\nsystems - simple, lightweight, reliable, open source, web-based and easy\nto setup and use.', 'en_US', NULL, '[[regtime]]', '[[regtime]]'),
[99] Fix | Delete
(2, 0, 1, 'Sample (with variables)', 'Hi %{ticket.name.first},\n<br>\n<br>\nYour ticket #%{ticket.number} created on %{ticket.create_date} is in\n%{ticket.dept.name} department.', 'en_US', NULL, '[[regtime]]', '[[regtime]]');
[100] Fix | Delete
[101] Fix | Delete
-- --------------------------------------------------------
[102] Fix | Delete
[103] Fix | Delete
--
[104] Fix | Delete
-- Table structure for table `[[dbprefix]]config`
[105] Fix | Delete
--
[106] Fix | Delete
[107] Fix | Delete
CREATE TABLE `[[dbprefix]]config` (
[108] Fix | Delete
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
[109] Fix | Delete
`namespace` varchar(64) NOT NULL,
[110] Fix | Delete
`key` varchar(64) NOT NULL,
[111] Fix | Delete
`value` text NOT NULL,
[112] Fix | Delete
`updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
[113] Fix | Delete
PRIMARY KEY (`id`),
[114] Fix | Delete
UNIQUE KEY `namespace` (`namespace`,`key`)
[115] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=99 ;
[116] Fix | Delete
[117] Fix | Delete
--
[118] Fix | Delete
-- Dumping data for table `[[dbprefix]]config`
[119] Fix | Delete
--
[120] Fix | Delete
[121] Fix | Delete
INSERT INTO `[[dbprefix]]config` VALUES
[122] Fix | Delete
(1, 'core', 'admin_email', '[[admin_email]]', '[[regtime]]'),
[123] Fix | Delete
(2, 'core', 'helpdesk_url', '[[softurl]]/', '[[regtime]]'),
[124] Fix | Delete
(3, 'core', 'helpdesk_title', '[[site_name]]', '[[regtime]]'),
[125] Fix | Delete
(4, 'core', 'schema_signature', '5fb92bef17f3b603659e024c01cc7a59', '[[regtime]]'),
[126] Fix | Delete
(5, 'schedule.1', 'configuration', '{"holidays":[4]}', '[[regtime]]'),
[127] Fix | Delete
(6, 'core', 'time_format', 'hh:mm a', '[[regtime]]'),
[128] Fix | Delete
(7, 'core', 'date_format', 'MM/dd/y', '[[regtime]]'),
[129] Fix | Delete
(8, 'core', 'datetime_format', 'MM/dd/y h:mm a', '[[regtime]]'),
[130] Fix | Delete
(9, 'core', 'daydatetime_format', 'EEE, MMM d y h:mm a', '[[regtime]]'),
[131] Fix | Delete
(10, 'core', 'default_priority_id', '2', '[[regtime]]'),
[132] Fix | Delete
(11, 'core', 'enable_daylight_saving', '', '[[regtime]]'),
[133] Fix | Delete
(12, 'core', 'reply_separator', '-- reply above this line --', '[[regtime]]'),
[134] Fix | Delete
(13, 'core', 'isonline', '1', '[[regtime]]'),
[135] Fix | Delete
(14, 'core', 'staff_ip_binding', '', '[[regtime]]'),
[136] Fix | Delete
(15, 'core', 'staff_max_logins', '4', '[[regtime]]'),
[137] Fix | Delete
(16, 'core', 'staff_login_timeout', '2', '[[regtime]]'),
[138] Fix | Delete
(17, 'core', 'staff_session_timeout', '30', '[[regtime]]'),
[139] Fix | Delete
(18, 'core', 'passwd_reset_period', '', '[[regtime]]'),
[140] Fix | Delete
(19, 'core', 'client_max_logins', '4', '[[regtime]]'),
[141] Fix | Delete
(20, 'core', 'client_login_timeout', '2', '[[regtime]]'),
[142] Fix | Delete
(21, 'core', 'client_session_timeout', '30', '[[regtime]]'),
[143] Fix | Delete
(22, 'core', 'max_page_size', '25', '[[regtime]]'),
[144] Fix | Delete
(23, 'core', 'max_open_tickets', '', '[[regtime]]'),
[145] Fix | Delete
(24, 'core', 'autolock_minutes', '3', '[[regtime]]'),
[146] Fix | Delete
(25, 'core', 'default_smtp_id', '', '[[regtime]]'),
[147] Fix | Delete
(26, 'core', 'use_email_priority', '', '[[regtime]]'),
[148] Fix | Delete
(27, 'core', 'enable_kb', '', '[[regtime]]'),
[149] Fix | Delete
(28, 'core', 'enable_premade', '1', '[[regtime]]'),
[150] Fix | Delete
(29, 'core', 'enable_captcha', '', '[[regtime]]'),
[151] Fix | Delete
(30, 'core', 'enable_auto_cron', '', '[[regtime]]'),
[152] Fix | Delete
(31, 'core', 'enable_mail_polling', '', '[[regtime]]'),
[153] Fix | Delete
(32, 'core', 'send_sys_errors', '1', '[[regtime]]'),
[154] Fix | Delete
(33, 'core', 'send_sql_errors', '1', '[[regtime]]'),
[155] Fix | Delete
(34, 'core', 'send_login_errors', '1', '[[regtime]]'),
[156] Fix | Delete
(35, 'core', 'save_email_headers', '1', '[[regtime]]'),
[157] Fix | Delete
(36, 'core', 'strip_quoted_reply', '1', '[[regtime]]'),
[158] Fix | Delete
(37, 'core', 'ticket_autoresponder', '', '[[regtime]]'),
[159] Fix | Delete
(38, 'core', 'message_autoresponder', '', '[[regtime]]'),
[160] Fix | Delete
(39, 'core', 'ticket_notice_active', '1', '[[regtime]]'),
[161] Fix | Delete
(40, 'core', 'ticket_alert_active', '1', '[[regtime]]'),
[162] Fix | Delete
(41, 'core', 'ticket_alert_admin', '1', '[[regtime]]'),
[163] Fix | Delete
(42, 'core', 'ticket_alert_dept_manager', '1', '[[regtime]]'),
[164] Fix | Delete
(43, 'core', 'ticket_alert_dept_members', '', '[[regtime]]'),
[165] Fix | Delete
(44, 'core', 'message_alert_active', '1', '[[regtime]]'),
[166] Fix | Delete
(45, 'core', 'message_alert_laststaff', '1', '[[regtime]]'),
[167] Fix | Delete
(46, 'core', 'message_alert_assigned', '1', '[[regtime]]'),
[168] Fix | Delete
(47, 'core', 'message_alert_dept_manager', '', '[[regtime]]'),
[169] Fix | Delete
(48, 'core', 'note_alert_active', '', '[[regtime]]'),
[170] Fix | Delete
(49, 'core', 'note_alert_laststaff', '1', '[[regtime]]'),
[171] Fix | Delete
(50, 'core', 'note_alert_assigned', '1', '[[regtime]]'),
[172] Fix | Delete
(51, 'core', 'note_alert_dept_manager', '', '[[regtime]]'),
[173] Fix | Delete
(52, 'core', 'transfer_alert_active', '', '[[regtime]]'),
[174] Fix | Delete
(53, 'core', 'transfer_alert_assigned', '', '[[regtime]]'),
[175] Fix | Delete
(54, 'core', 'transfer_alert_dept_manager', '1', '[[regtime]]'),
[176] Fix | Delete
(55, 'core', 'transfer_alert_dept_members', '', '[[regtime]]'),
[177] Fix | Delete
(56, 'core', 'overdue_alert_active', '1', '[[regtime]]'),
[178] Fix | Delete
(57, 'core', 'overdue_alert_assigned', '1', '[[regtime]]'),
[179] Fix | Delete
(58, 'core', 'overdue_alert_dept_manager', '1', '[[regtime]]'),
[180] Fix | Delete
(59, 'core', 'overdue_alert_dept_members', '', '[[regtime]]'),
[181] Fix | Delete
(60, 'core', 'assigned_alert_active', '1', '[[regtime]]'),
[182] Fix | Delete
(61, 'core', 'assigned_alert_staff', '1', '[[regtime]]'),
[183] Fix | Delete
(62, 'core', 'assigned_alert_team_lead', '', '[[regtime]]'),
[184] Fix | Delete
(63, 'core', 'assigned_alert_team_members', '', '[[regtime]]'),
[185] Fix | Delete
(64, 'core', 'auto_claim_tickets', '1', '[[regtime]]'),
[186] Fix | Delete
(65, 'core', 'auto_refer_closed', '1', '[[regtime]]'),
[187] Fix | Delete
(66, 'core', 'collaborator_ticket_visibility', '1', '[[regtime]]'),
[188] Fix | Delete
(67, 'core', 'require_topic_to_close', '', '[[regtime]]'),
[189] Fix | Delete
(68, 'core', 'show_related_tickets', '1', '[[regtime]]'),
[190] Fix | Delete
(69, 'core', 'show_assigned_tickets', '1', '[[regtime]]'),
[191] Fix | Delete
(70, 'core', 'show_answered_tickets', '', '[[regtime]]'),
[192] Fix | Delete
(71, 'core', 'hide_staff_name', '', '[[regtime]]'),
[193] Fix | Delete
(72, 'core', 'disable_agent_collabs', '', '[[regtime]]'),
[194] Fix | Delete
(73, 'core', 'overlimit_notice_active', '', '[[regtime]]'),
[195] Fix | Delete
(74, 'core', 'email_attachments', '1', '[[regtime]]'),
[196] Fix | Delete
(75, 'core', 'ticket_number_format', '######', '[[regtime]]'),
[197] Fix | Delete
(76, 'core', 'ticket_sequence_id', '', '[[regtime]]'),
[198] Fix | Delete
(77, 'core', 'queue_bucket_counts', '', '[[regtime]]'),
[199] Fix | Delete
(78, 'core', 'allow_external_images', '', '[[regtime]]'),
[200] Fix | Delete
(79, 'core', 'task_number_format', '#', '[[regtime]]'),
[201] Fix | Delete
(80, 'core', 'task_sequence_id', '2', '[[regtime]]'),
[202] Fix | Delete
(81, 'core', 'log_level', '2', '[[regtime]]'),
[203] Fix | Delete
(82, 'core', 'log_graceperiod', '12', '[[regtime]]'),
[204] Fix | Delete
(83, 'core', 'client_registration', 'public', '[[regtime]]'),
[205] Fix | Delete
(84, 'core', 'default_ticket_queue', '1', '[[regtime]]'),
[206] Fix | Delete
(85, 'core', 'embedded_domain_whitelist', 'youtube.com, dailymotion.com, vimeo.com, player.vimeo.com, web.microsoftstream.com', '[[regtime]]'),
[207] Fix | Delete
(86, 'core', 'max_file_size', '16777216', '[[regtime]]'),
[208] Fix | Delete
(87, 'core', 'landing_page_id', '1', '[[regtime]]'),
[209] Fix | Delete
(88, 'core', 'thank-you_page_id', '2', '[[regtime]]'),
[210] Fix | Delete
(89, 'core', 'offline_page_id', '3', '[[regtime]]'),
[211] Fix | Delete
(90, 'core', 'system_language', '[[language]]', '[[regtime]]'),
[212] Fix | Delete
(91, 'mysqlsearch', 'reindex', '1', '[[regtime]]'),
[213] Fix | Delete
(92, 'core', 'default_email_id', '1', '[[regtime]]'),
[214] Fix | Delete
(93, 'core', 'alert_email_id', '2', '[[regtime]]'),
[215] Fix | Delete
(94, 'core', 'default_dept_id', '1', '[[regtime]]'),
[216] Fix | Delete
(95, 'core', 'default_sla_id', '1', '[[regtime]]'),
[217] Fix | Delete
(96, 'core', 'schedule_id', '1', '[[regtime]]'),
[218] Fix | Delete
(97, 'core', 'default_template_id', '1', '[[regtime]]'),
[219] Fix | Delete
(98, 'core', 'default_timezone', 'Asia/Kolkata', '[[regtime]]');
[220] Fix | Delete
[221] Fix | Delete
-- --------------------------------------------------------
[222] Fix | Delete
[223] Fix | Delete
--
[224] Fix | Delete
-- Table structure for table `[[dbprefix]]content`
[225] Fix | Delete
--
[226] Fix | Delete
[227] Fix | Delete
CREATE TABLE `[[dbprefix]]content` (
[228] Fix | Delete
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
[229] Fix | Delete
`isactive` tinyint(1) unsigned NOT NULL DEFAULT '0',
[230] Fix | Delete
`type` varchar(32) NOT NULL DEFAULT 'other',
[231] Fix | Delete
`name` varchar(255) NOT NULL,
[232] Fix | Delete
`body` text NOT NULL,
[233] Fix | Delete
`notes` text,
[234] Fix | Delete
`created` datetime NOT NULL,
[235] Fix | Delete
`updated` datetime NOT NULL,
[236] Fix | Delete
PRIMARY KEY (`id`),
[237] Fix | Delete
UNIQUE KEY `name` (`name`)
[238] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ;
[239] Fix | Delete
[240] Fix | Delete
--
[241] Fix | Delete
-- Dumping data for table `[[dbprefix]]content`
[242] Fix | Delete
--
[243] Fix | Delete
[244] Fix | Delete
INSERT INTO `[[dbprefix]]content` VALUES
[245] Fix | Delete
(1, 1, 'landing', 'Landing', '<h1>Welcome to the Support Center</h1> <p> In order to streamline support requests and better serve you, we utilize a support ticket system. Every support request is assigned a unique ticket number which you can use to track the progress and responses online. For your reference we provide complete archives and history of all your support requests. A valid email address is required to submit a ticket. </p>', 'The Landing Page refers to the content of the Customer Portal''s initial view. The template modifies the content seen above the two links <strong>Open a New Ticket</strong> and <strong>Check Ticket Status</strong>.', '[[regtime]]', '[[regtime]]'),
[246] Fix | Delete
(2, 1, 'thank-you', 'Thank You', '<div>%{ticket.name},\n<br>\n<br>\nThank you for contacting us.\n<br>\n<br>\nA support ticket request has been created and a representative will be\ngetting back to you shortly if necessary.</p>\n<br>\n<br>\nSupport Team\n</div>', 'This template defines the content displayed on the Thank-You page after a\nClient submits a new ticket in the Client Portal.', '[[regtime]]', '[[regtime]]'),
[247] Fix | Delete
(3, 1, 'offline', 'Offline', '<div><h1>\n<span style="font-size: medium">Support Ticket System Offline</span>\n</h1>\n<p>Thank you for your interest in contacting us.</p>\n<p>Our helpdesk is offline at the moment, please check back at a later\ntime.</p>\n</div>', 'The Offline Page appears in the Customer Portal when the Help Desk is offline.', '[[regtime]]', '[[regtime]]'),
[248] Fix | Delete
(4, 1, 'registration-staff', 'Welcome to osTicket', '<h3><strong>Hi %{recipient.name.first},</strong></h3> <div> We''ve created an account for you at our help desk at %{url}.<br /> <br /> Please follow the link below to confirm your account and gain access to your tickets.<br /> <br /> <a href="%{link}">%{link}</a><br /> <br /> <em style="font-size: small">Your friendly Customer Support System<br /> %{company.name}</em> </div>', 'This template defines the initial email (optional) sent to Agents when an account is created on their behalf.', '[[regtime]]', '[[regtime]]'),
[249] Fix | Delete
(5, 1, 'pwreset-staff', 'osTicket Staff Password Reset', '<h3><strong>Hi %{staff.name.first},</strong></h3> <div> A password reset request has been submitted on your behalf for the helpdesk at %{url}.<br /> <br /> If you feel that this has been done in error, delete and disregard this email. Your account is still secure and no one has been given access to it. It is not locked and your password has not been reset. Someone could have mistakenly entered your email address.<br /> <br /> Follow the link below to login to the help desk and change your password.<br /> <br /> <a href="%{link}">%{link}</a><br /> <br /> <em style="font-size: small">Your friendly Customer Support System</em> <br /> <img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width: 126px" /> </div>', 'This template defines the email sent to Staff who select the <strong>Forgot My Password</strong> link on the Staff Control Panel Log In page.', '[[regtime]]', '[[regtime]]'),
[250] Fix | Delete
(6, 1, 'banner-staff', 'Authentication Required', '', 'This is the initial message and banner shown on the Staff Log In page. The first input field refers to the red-formatted text that appears at the top. The latter textarea is for the banner content which should serve as a disclaimer.', '[[regtime]]', '[[regtime]]'),
[251] Fix | Delete
(7, 1, 'registration-client', 'Welcome to %{company.name}', '<h3><strong>Hi %{recipient.name.first},</strong></h3> <div> We''ve created an account for you at our help desk at %{url}.<br /> <br /> Please follow the link below to confirm your account and gain access to your tickets.<br /> <br /> <a href="%{link}">%{link}</a><br /> <br /> <em style="font-size: small">Your friendly Customer Support System <br /> %{company.name}</em> </div>', 'This template defines the email sent to Clients when their account has been created in the Client Portal or by an Agent on their behalf. This email serves as an email address verification. Please use %{link} somewhere in the body.', '[[regtime]]', '[[regtime]]'),
[252] Fix | Delete
(8, 1, 'pwreset-client', '%{company.name} Help Desk Access', '<h3><strong>Hi %{user.name.first},</strong></h3> <div> A password reset request has been submitted on your behalf for the helpdesk at %{url}.<br /> <br /> If you feel that this has been done in error, delete and disregard this email. Your account is still secure and no one has been given access to it. It is not locked and your password has not been reset. Someone could have mistakenly entered your email address.<br /> <br /> Follow the link below to login to the help desk and change your password.<br /> <br /> <a href="%{link}">%{link}</a><br /> <br /> <em style="font-size: small">Your friendly Customer Support System <br /> %{company.name}</em> </div>', 'This template defines the email sent to Clients who select the <strong>Forgot My Password</strong> link on the Client Log In page.', '[[regtime]]', '[[regtime]]'),
[253] Fix | Delete
(9, 1, 'banner-client', 'Sign in to %{company.name}', 'To better serve you, we encourage our Clients to register for an account.', 'This composes the header on the Client Log In page. It can be useful to inform your Clients about your log in and registration policies.', '[[regtime]]', '[[regtime]]'),
[254] Fix | Delete
(10, 1, 'registration-confirm', 'Account registration', '<div><strong>Thanks for registering for an account.</strong><br/> <br /> We''ve just sent you an email to the address you entered. Please follow the link in the email to confirm your account and gain access to your tickets. </div>', 'This templates defines the page shown to Clients after completing the registration form. The template should mention that the system is sending them an email confirmation link and what is the next step in the registration process.', '[[regtime]]', '[[regtime]]'),
[255] Fix | Delete
(11, 1, 'registration-thanks', 'Account Confirmed!', '<div> <strong>Thanks for registering for an account.</strong><br /> <br /> You''ve confirmed your email address and successfully activated your account. You may proceed to open a new ticket or manage existing tickets.<br /> <br /> <em>Your friendly support center</em><br /> %{company.name} </div>', 'This template defines the content displayed after Clients successfully register by confirming their account. This page should inform the user that registration is complete and that the Client can now submit a ticket or access existing tickets.', '[[regtime]]', '[[regtime]]'),
[256] Fix | Delete
(12, 1, 'access-link', 'Ticket [#%{ticket.number}] Access Link', '<h3><strong>Hi %{recipient.name.first},</strong></h3> <div> An access link request for ticket #%{ticket.number} has been submitted on your behalf for the helpdesk at %{url}.<br /> <br /> Follow the link below to check the status of the ticket #%{ticket.number}.<br /> <br /> <a href="%{recipient.ticket_link}">%{recipient.ticket_link}</a><br /> <br /> If you <strong>did not</strong> make the request, please delete and disregard this email. Your account is still secure and no one has been given access to the ticket. Someone could have mistakenly entered your email address.<br /> <br /> --<br /> %{company.name} </div>', 'This template defines the notification for Clients that an access link was sent to their email. The ticket number and email address trigger the access link.', '[[regtime]]', '[[regtime]]'),
[257] Fix | Delete
(13, 1, 'email2fa-staff', 'osTicket Two Factor Authentication', '<h3><strong>Hi %{staff.name.first},</strong></h3> <div> You have just logged into for the helpdesk at %{url}.<br /> <br /> Use the verification code below to finish logging into the helpdesk.<br /> <br /> %{otp}<br /> <br /> <em style="font-size: small">Your friendly Customer Support System</em> <br /> <img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width: 126px" /> </div>', 'This template defines the email sent to Staff who use Email for Two Factor Authentication', '[[regtime]]', '[[regtime]]');
[258] Fix | Delete
[259] Fix | Delete
-- --------------------------------------------------------
[260] Fix | Delete
[261] Fix | Delete
--
[262] Fix | Delete
-- Table structure for table `[[dbprefix]]department`
[263] Fix | Delete
--
[264] Fix | Delete
[265] Fix | Delete
CREATE TABLE `[[dbprefix]]department` (
[266] Fix | Delete
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
[267] Fix | Delete
`pid` int(11) unsigned DEFAULT NULL,
[268] Fix | Delete
`tpl_id` int(10) unsigned NOT NULL DEFAULT '0',
[269] Fix | Delete
`sla_id` int(10) unsigned NOT NULL DEFAULT '0',
[270] Fix | Delete
`schedule_id` int(10) unsigned NOT NULL DEFAULT '0',
[271] Fix | Delete
`email_id` int(10) unsigned NOT NULL DEFAULT '0',
[272] Fix | Delete
`autoresp_email_id` int(10) unsigned NOT NULL DEFAULT '0',
[273] Fix | Delete
`manager_id` int(10) unsigned NOT NULL DEFAULT '0',
[274] Fix | Delete
`flags` int(10) unsigned NOT NULL DEFAULT '0',
[275] Fix | Delete
`name` varchar(128) NOT NULL DEFAULT '',
[276] Fix | Delete
`signature` text NOT NULL,
[277] Fix | Delete
`ispublic` tinyint(1) unsigned NOT NULL DEFAULT '1',
[278] Fix | Delete
`group_membership` tinyint(1) NOT NULL DEFAULT '0',
[279] Fix | Delete
`ticket_auto_response` tinyint(1) NOT NULL DEFAULT '1',
[280] Fix | Delete
`message_auto_response` tinyint(1) NOT NULL DEFAULT '0',
[281] Fix | Delete
`path` varchar(128) NOT NULL DEFAULT '/',
[282] Fix | Delete
`updated` datetime NOT NULL,
[283] Fix | Delete
`created` datetime NOT NULL,
[284] Fix | Delete
PRIMARY KEY (`id`),
[285] Fix | Delete
UNIQUE KEY `name` (`name`,`pid`),
[286] Fix | Delete
KEY `manager_id` (`manager_id`),
[287] Fix | Delete
KEY `autoresp_email_id` (`autoresp_email_id`),
[288] Fix | Delete
KEY `tpl_id` (`tpl_id`),
[289] Fix | Delete
KEY `flags` (`flags`)
[290] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
[291] Fix | Delete
[292] Fix | Delete
--
[293] Fix | Delete
-- Dumping data for table `[[dbprefix]]department`
[294] Fix | Delete
--
[295] Fix | Delete
[296] Fix | Delete
INSERT INTO `[[dbprefix]]department` VALUES
[297] Fix | Delete
(1, NULL, 0, 0, 0, 0, 0, 0, 4, 'Support', 'Support Department', 1, 1, 1, 1, '/1/', '[[regtime]]', '[[regtime]]'),
[298] Fix | Delete
(2, NULL, 0, 1, 0, 0, 0, 0, 4, 'Sales', 'Sales and Customer Retention', 1, 1, 1, 1, '/2/', '[[regtime]]', '[[regtime]]'),
[299] Fix | Delete
(3, NULL, 0, 0, 0, 0, 0, 0, 4, 'Maintenance', 'Maintenance Department', 1, 0, 1, 1, '/3/', '[[regtime]]', '[[regtime]]');
[300] Fix | Delete
[301] Fix | Delete
-- --------------------------------------------------------
[302] Fix | Delete
[303] Fix | Delete
--
[304] Fix | Delete
-- Table structure for table `[[dbprefix]]draft`
[305] Fix | Delete
--
[306] Fix | Delete
[307] Fix | Delete
CREATE TABLE `[[dbprefix]]draft` (
[308] Fix | Delete
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
[309] Fix | Delete
`staff_id` int(11) unsigned NOT NULL,
[310] Fix | Delete
`namespace` varchar(32) NOT NULL DEFAULT '',
[311] Fix | Delete
`body` text NOT NULL,
[312] Fix | Delete
`extra` text,
[313] Fix | Delete
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
[314] Fix | Delete
`updated` timestamp NULL DEFAULT NULL,
[315] Fix | Delete
PRIMARY KEY (`id`),
[316] Fix | Delete
KEY `staff_id` (`staff_id`),
[317] Fix | Delete
KEY `namespace` (`namespace`)
[318] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[319] Fix | Delete
[320] Fix | Delete
-- --------------------------------------------------------
[321] Fix | Delete
[322] Fix | Delete
--
[323] Fix | Delete
-- Table structure for table `[[dbprefix]]email`
[324] Fix | Delete
--
[325] Fix | Delete
[326] Fix | Delete
CREATE TABLE `[[dbprefix]]email` (
[327] Fix | Delete
`email_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
[328] Fix | Delete
`noautoresp` tinyint(1) unsigned NOT NULL DEFAULT '0',
[329] Fix | Delete
`priority_id` int(11) unsigned NOT NULL DEFAULT '2',
[330] Fix | Delete
`dept_id` int(11) unsigned NOT NULL DEFAULT '0',
[331] Fix | Delete
`topic_id` int(11) unsigned NOT NULL DEFAULT '0',
[332] Fix | Delete
`email` varchar(255) NOT NULL DEFAULT '',
[333] Fix | Delete
`name` varchar(255) NOT NULL DEFAULT '',
[334] Fix | Delete
`notes` text,
[335] Fix | Delete
`created` datetime NOT NULL,
[336] Fix | Delete
`updated` datetime NOT NULL,
[337] Fix | Delete
PRIMARY KEY (`email_id`),
[338] Fix | Delete
UNIQUE KEY `email` (`email`),
[339] Fix | Delete
KEY `priority_id` (`priority_id`),
[340] Fix | Delete
KEY `dept_id` (`dept_id`)
[341] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
[342] Fix | Delete
[343] Fix | Delete
--
[344] Fix | Delete
-- Dumping data for table `[[dbprefix]]email`
[345] Fix | Delete
--
[346] Fix | Delete
[347] Fix | Delete
INSERT INTO `[[dbprefix]]email` VALUES
[348] Fix | Delete
(1, 0, 2, 1, 0, '[[system_email]]', 'Support', NULL, '[[regtime]]', '[[regtime]]'),
[349] Fix | Delete
(2, 0, 2, 1, 0, '[[alerts_email]]', 'osTicket Alerts', NULL, '[[regtime]]', '[[regtime]]'),
[350] Fix | Delete
(3, 0, 2, 1, 0, '[[noreply_email]]', '', NULL, '[[regtime]]', '[[regtime]]');
[351] Fix | Delete
[352] Fix | Delete
-- --------------------------------------------------------
[353] Fix | Delete
[354] Fix | Delete
--
[355] Fix | Delete
-- Table structure for table `[[dbprefix]]email_account`
[356] Fix | Delete
--
[357] Fix | Delete
[358] Fix | Delete
CREATE TABLE `[[dbprefix]]email_account` (
[359] Fix | Delete
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
[360] Fix | Delete
`email_id` int(11) unsigned NOT NULL,
[361] Fix | Delete
`type` enum('mailbox','smtp') NOT NULL DEFAULT 'mailbox',
[362] Fix | Delete
`auth_bk` varchar(128) NOT NULL,
[363] Fix | Delete
`auth_id` varchar(16) DEFAULT NULL,
[364] Fix | Delete
`active` tinyint(1) unsigned NOT NULL DEFAULT '0',
[365] Fix | Delete
`host` varchar(128) NOT NULL DEFAULT '',
[366] Fix | Delete
`port` int(11) NOT NULL,
[367] Fix | Delete
`folder` varchar(255) DEFAULT NULL,
[368] Fix | Delete
`protocol` enum('IMAP','POP','SMTP','OTHER') NOT NULL DEFAULT 'OTHER',
[369] Fix | Delete
`encryption` enum('NONE','AUTO','SSL') NOT NULL DEFAULT 'AUTO',
[370] Fix | Delete
`fetchfreq` tinyint(3) unsigned NOT NULL DEFAULT '5',
[371] Fix | Delete
`fetchmax` tinyint(4) unsigned DEFAULT '30',
[372] Fix | Delete
`postfetch` enum('archive','delete','nothing') NOT NULL DEFAULT 'nothing',
[373] Fix | Delete
`archivefolder` varchar(255) DEFAULT NULL,
[374] Fix | Delete
`allow_spoofing` tinyint(1) unsigned DEFAULT '0',
[375] Fix | Delete
`num_errors` int(11) unsigned NOT NULL DEFAULT '0',
[376] Fix | Delete
`last_error_msg` tinytext,
[377] Fix | Delete
`last_error` datetime DEFAULT NULL,
[378] Fix | Delete
`last_activity` datetime DEFAULT NULL,
[379] Fix | Delete
`created` datetime NOT NULL,
[380] Fix | Delete
`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
[381] Fix | Delete
PRIMARY KEY (`id`),
[382] Fix | Delete
KEY `email_id` (`email_id`),
[383] Fix | Delete
KEY `type` (`type`)
[384] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[385] Fix | Delete
[386] Fix | Delete
-- --------------------------------------------------------
[387] Fix | Delete
[388] Fix | Delete
--
[389] Fix | Delete
-- Table structure for table `[[dbprefix]]email_template`
[390] Fix | Delete
--
[391] Fix | Delete
[392] Fix | Delete
CREATE TABLE `[[dbprefix]]email_template` (
[393] Fix | Delete
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
[394] Fix | Delete
`tpl_id` int(11) unsigned NOT NULL,
[395] Fix | Delete
`code_name` varchar(32) NOT NULL,
[396] Fix | Delete
`subject` varchar(255) NOT NULL DEFAULT '',
[397] Fix | Delete
`body` text NOT NULL,
[398] Fix | Delete
`notes` text,
[399] Fix | Delete
`created` datetime NOT NULL,
[400] Fix | Delete
`updated` datetime NOT NULL,
[401] Fix | Delete
PRIMARY KEY (`id`),
[402] Fix | Delete
UNIQUE KEY `template_lookup` (`tpl_id`,`code_name`)
[403] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
[404] Fix | Delete
[405] Fix | Delete
--
[406] Fix | Delete
-- Dumping data for table `[[dbprefix]]email_template`
[407] Fix | Delete
--
[408] Fix | Delete
[409] Fix | Delete
INSERT INTO `[[dbprefix]]email_template` VALUES
[410] Fix | Delete
(1, 1, 'ticket.autoresp', 'Support Ticket Opened [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> <p>A request for support has been created and assigned #%{ticket.number}. A representative will follow-up with you as soon as possible. You can <a href="%%7Brecipient.ticket_link%7D">view this ticket''s progress online</a>. </p> <br /> <div style="color:rgb(127, 127, 127)">Your %{company.name} Team, <br /> %{signature} </div> <hr /><div style="color:rgb(127, 127, 127);font-size:small"><em>If you wish to provide additional comments or information regarding the issue, please reply to this email or <a href="%%7Brecipient.ticket_link%7D"><span style="color:rgb(84, 141, 212)">login to your account</span></a> for a complete archive of your support requests.</em></div>', NULL, '[[regtime]]', '[[regtime]]'),
[411] Fix | Delete
(2, 1, 'ticket.autoreply', 'Re: %{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> A request for support has been created and assigned ticket <a href="%%7Brecipient.ticket_link%7D">#%{ticket.number}</a> with the following automatic reply <br /><br /> Topic: <strong>%{ticket.topic.name}</strong> <br /> Subject: <strong>%{ticket.subject}</strong> <br /><br /> %{response} <br /><br /><div style="color:rgb(127, 127, 127)">Your %{company.name} Team,<br /> %{signature}</div> <hr /><div style="color:rgb(127, 127, 127);font-size:small"><em>We hope this response has sufficiently answered your questions. If you wish to provide additional comments or information, please reply to this email or <a href="%%7Brecipient.ticket_link%7D"><span style="color:rgb(84, 141, 212)">login to your account</span></a> for a complete archive of your support requests.</em></div>', NULL, '[[regtime]]', '[[regtime]]'),
[412] Fix | Delete
(3, 1, 'message.autoresp', 'Message Confirmation', '<h3><strong>Dear %{recipient.name.first},</strong></h3> Your reply to support request <a href="%%7Brecipient.ticket_link%7D">#%{ticket.number}</a> has been noted <br /><br /> <div style="color:rgb(127, 127, 127)">Your %{company.name} Team,<br /> %{signature} </div> <hr /><div style="color:rgb(127, 127, 127);font-size:small;text-align:center"><em>You can view the support request progress <a href="%%7Brecipient.ticket_link%7D">online here</a></em> </div>', NULL, '[[regtime]]', '[[regtime]]'),
[413] Fix | Delete
(4, 1, 'ticket.notice', '%{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> Our customer care team has created a ticket, <a href="%%7Brecipient.ticket_link%7D">#%{ticket.number}</a> on your behalf, with the following details and summary: <br /><br /> Topic: <strong>%{ticket.topic.name}</strong> <br /> Subject: <strong>%{ticket.subject}</strong> <br /><br /> %{message} <br /><br /> %{response} <br /><br /> If need be, a representative will follow-up with you as soon as possible. You can also <a href="%%7Brecipient.ticket_link%7D">view this ticket''s progress online</a>. <br /><br /> <div style="color:rgb(127, 127, 127)">Your %{company.name} Team,<br /> %{signature}</div> <hr /><div style="color:rgb(127, 127, 127);font-size:small"><em>If you wish to provide additional comments or information regarding the issue, please reply to this email or <a href="%%7Brecipient.ticket_link%7D"><span style="color:rgb(84, 141, 212)">login to your account</span></a> for a complete archive of your support requests.</em></div>', NULL, '[[regtime]]', '[[regtime]]'),
[414] Fix | Delete
(5, 1, 'ticket.overlimit', 'Open Tickets Limit Reached', '<h3><strong>Dear %{ticket.name.first},</strong></h3> You have reached the maximum number of open tickets allowed. To be able to open another ticket, one of your pending tickets must be closed. To update or add comments to an open ticket simply <a href="%%7Burl%7D/tickets.php?e=%%7Bticket.email%7D">login to our helpdesk</a>. <br /><br /> Thank you,<br /> Support Ticket System', NULL, '[[regtime]]', '[[regtime]]'),
[415] Fix | Delete
(6, 1, 'ticket.reply', 'Re: %{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> %{response} <br /><br /> <div style="color:rgb(127, 127, 127)">Your %{company.name} Team,<br /> %{signature} </div> <hr /><div style="color:rgb(127, 127, 127);font-size:small;text-align:center"><em>We hope this response has sufficiently answered your questions. If not, please do not send another email. Instead, reply to this email or <a href="%%7Brecipient.ticket_link%7D" style="color:rgb(84, 141, 212)">login to your account</a> for a complete archive of all your support requests and responses.</em></div>', NULL, '[[regtime]]', '[[regtime]]'),
[416] Fix | Delete
(7, 1, 'ticket.activity.notice', 'Re: %{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> <div><em>%{poster.name}</em> just logged a message to a ticket in which you participate. </div> <br /> %{message} <br /><br /><hr /> <div style="color:rgb(127, 127, 127);font-size:small;text-align:center"><em>You''re getting this email because you are a collaborator on ticket <a href="%%7Brecipient.ticket_link%7D" style="color:rgb(84, 141, 212)">#%{ticket.number}</a>. To participate, simply reply to this email or <a href="%%7Brecipient.ticket_link%7D" style="color:rgb(84, 141, 212)">click here</a> for a complete archive of the ticket thread.</em> </div>', NULL, '[[regtime]]', '[[regtime]]'),
[417] Fix | Delete
(8, 1, 'ticket.alert', 'New Ticket Alert', '<h2>Hi %{recipient.name},</h2> New ticket #%{ticket.number} created <br /><br /><table><tbody><tr><td><strong>From</strong>: </td> <td>%{ticket.name} </td> </tr><tr><td><strong>Department</strong>: </td> <td>%{ticket.dept.name} </td> </tr></tbody></table><br /> %{message} <br /><br /><hr /><div>To view or respond to the ticket, please <a href="%%7Bticket.staff_link%7D">login</a> to the support ticket system</div> <em style="font-size:small">Your friendly Customer Support System</em> <br /><a href="https://osticket.com/"><img width="126" height="19" style="width:126px" alt="Powered By osTicket" src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" /></a>', NULL, '[[regtime]]', '[[regtime]]'),
[418] Fix | Delete
(9, 1, 'message.alert', 'New Message Alert', '<h3><strong>Hi %{recipient.name},</strong></h3> New message appended to ticket <a href="%%7Bticket.staff_link%7D">#%{ticket.number}</a> <br /><br /><table><tbody><tr><td><strong>From</strong>: </td> <td>%{poster.name} </td> </tr><tr><td><strong>Department</strong>: </td> <td>%{ticket.dept.name} </td> </tr></tbody></table><br /> %{message} <br /><br /><hr /><div>To view or respond to the ticket, please <a href="%%7Bticket.staff_link%7D"><span style="color:rgb(84, 141, 212)">login</span></a> to the support ticket system</div> <em style="color:rgb(127,127,127);font-size:small">Your friendly Customer Support System</em><br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]'),
[419] Fix | Delete
(10, 1, 'note.alert', 'New Internal Activity Alert', '<h3><strong>Hi %{recipient.name},</strong></h3> An agent has logged activity on ticket <a href="%%7Bticket.staff_link%7D">#%{ticket.number}</a> <br /><br /><table><tbody><tr><td><strong>From</strong>: </td> <td>%{note.poster} </td> </tr><tr><td><strong>Title</strong>: </td> <td>%{note.title} </td> </tr></tbody></table><br /> %{note.message} <br /><br /><hr /> To view/respond to the ticket, please <a href="%%7Bticket.staff_link%7D">login</a> to the support ticket system <br /><br /><em style="font-size:small">Your friendly Customer Support System</em> <br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]'),
[420] Fix | Delete
(11, 1, 'assigned.alert', 'Ticket Assigned to you', '<h3><strong>Hi %{assignee.name.first},</strong></h3> Ticket <a href="%%7Bticket.staff_link%7D">#%{ticket.number}</a> has been assigned to you by %{assigner.name.short} <br /><br /><table><tbody><tr><td><strong>From</strong>: </td> <td>%{ticket.name} </td> </tr><tr><td><strong>Subject</strong>: </td> <td>%{ticket.subject} </td> </tr></tbody></table><br /> %{comments} <br /><br /><hr /><div>To view/respond to the ticket, please <a href="%%7Bticket.staff_link%7D"><span style="color:rgb(84, 141, 212)">login</span></a> to the support ticket system</div> <em style="font-size:small">Your friendly Customer Support System</em> <br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]'),
[421] Fix | Delete
(12, 1, 'transfer.alert', 'Ticket #%{ticket.number} transfer - %{ticket.dept.name}', '<h3>Hi %{recipient.name},</h3> Ticket <a href="%%7Bticket.staff_link%7D">#%{ticket.number}</a> has been transferred to the %{ticket.dept.name} department by <strong>%{staff.name.short}</strong> <br /><br /> <blockquote>%{comments} </blockquote> <hr /><div>To view or respond to the ticket, please <a href="%%7Bticket.staff_link%7D">login</a> to the support ticket system. </div> <em style="font-size:small">Your friendly Customer Support System</em> <br /><a href="https://osticket.com/"><img width="126" height="19" alt="Powered By osTicket" style="width:126px" src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" /></a>', NULL, '[[regtime]]', '[[regtime]]'),
[422] Fix | Delete
(13, 1, 'ticket.overdue', 'Stale Ticket Alert', '<h3><strong>Hi %{recipient.name}</strong>,</h3> A ticket, <a href="%%7Bticket.staff_link%7D">#%{ticket.number}</a> is seriously overdue. <br /><br /> We should all work hard to guarantee that all tickets are being addressed in a timely manner. <br /><br /> Signed,<br /> %{ticket.dept.manager.name} <hr /><div>To view or respond to the ticket, please <a href="%%7Bticket.staff_link%7D"><span style="color:rgb(84, 141, 212)">login</span></a> to the support ticket system. You''re receiving this notice because the ticket is assigned directly to you or to a team or department of which you''re a member.</div> <em style="font-size:small">Your friendly <span style="font-size:smaller">(although with limited patience)</span> Customer Support System</em><br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" height="19" alt="Powered by osTicket" width="126" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]'),
[423] Fix | Delete
(14, 1, 'task.alert', 'New Task Alert', '<h2>Hi %{recipient.name},</h2> New task <a href="%%7Btask.staff_link%7D">#%{task.number}</a> created <br /><br /><table><tbody><tr><td><strong>Department</strong>: </td> <td>%{task.dept.name} </td> </tr></tbody></table><br /> %{task.description} <br /><br /><hr /><div>To view or respond to the task, please <a href="%%7Btask.staff_link%7D">login</a> to the support system</div> <em style="font-size:small">Your friendly Customer Support System</em> <br /><a href="https://osticket.com/"><img width="126" height="19" style="width:126px" alt="Powered By osTicket" src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" /></a>', NULL, '[[regtime]]', '[[regtime]]'),
[424] Fix | Delete
(15, 1, 'task.activity.notice', 'Re: %{task.title} [#%{task.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> <div><em>%{poster.name}</em> just logged a message to a task in which you participate. </div> <br /> %{message} <br /><br /><hr /> <div style="color:rgb(127, 127, 127);font-size:small;text-align:center"><em>You''re getting this email because you are a collaborator on task #%{task.number}. To participate, simply reply to this email.</em> </div>', NULL, '[[regtime]]', '[[regtime]]'),
[425] Fix | Delete
(16, 1, 'task.activity.alert', 'Task Activity [#%{task.number}] - %{activity.title}', '<h3><strong>Hi %{recipient.name},</strong></h3> Task <a href="%%7Btask.staff_link%7D">#%{task.number}</a> updated: %{activity.description} <br /><br /> %{message} <br /><br /><hr /><div>To view or respond to the task, please <a href="%%7Btask.staff_link%7D"><span style="color:rgb(84, 141, 212)">login</span></a> to the support system</div> <em style="color:rgb(127,127,127);font-size:small">Your friendly Customer Support System</em><br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]'),
[426] Fix | Delete
(17, 1, 'task.assignment.alert', 'Task Assigned to you', '<h3><strong>Hi %{assignee.name.first},</strong></h3> Task <a href="%%7Btask.staff_link%7D">#%{task.number}</a> has been assigned to you by %{assigner.name.short} <br /><br /> %{comments} <br /><br /><hr /><div>To view/respond to the task, please <a href="%%7Btask.staff_link%7D"><span style="color:rgb(84, 141, 212)">login</span></a> to the support system</div> <em style="font-size:small">Your friendly Customer Support System</em> <br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" alt="Powered by osTicket" width="126" height="19" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]'),
[427] Fix | Delete
(18, 1, 'task.transfer.alert', 'Task #%{task.number} transfer - %{task.dept.name}', '<h3>Hi %{recipient.name},</h3> Task <a href="%%7Btask.staff_link%7D">#%{task.number}</a> has been transferred to the %{task.dept.name} department by <strong>%{staff.name.short}</strong> <br /><br /> <blockquote>%{comments} </blockquote> <hr /><div>To view or respond to the task, please <a href="%%7Btask.staff_link%7D">login</a> to the support system. </div> <em style="font-size:small">Your friendly Customer Support System</em> <br /><a href="https://osticket.com/"><img width="126" height="19" alt="Powered By osTicket" style="width:126px" src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" /></a>', NULL, '[[regtime]]', '[[regtime]]'),
[428] Fix | Delete
(19, 1, 'task.overdue.alert', 'Stale Task Alert', '<h3><strong>Hi %{recipient.name}</strong>,</h3> A task, <a href="%%7Btask.staff_link%7D">#%{task.number}</a> is seriously overdue. <br /><br /> We should all work hard to guarantee that all tasks are being addressed in a timely manner. <br /><br /> Signed,<br /> %{task.dept.manager.name} <hr /><div>To view or respond to the task, please <a href="%%7Btask.staff_link%7D"><span style="color:rgb(84, 141, 212)">login</span></a> to the support system. You''re receiving this notice because the task is assigned directly to you or to a team or department of which you''re a member.</div> <em style="font-size:small">Your friendly <span style="font-size:smaller">(although with limited patience)</span> Customer Support System</em><br /><img src="cid:b56944cb4722cc5cda9d1e23a3ea7fbc" height="19" alt="Powered by osTicket" width="126" style="width:126px" />', NULL, '[[regtime]]', '[[regtime]]');
[429] Fix | Delete
[430] Fix | Delete
-- --------------------------------------------------------
[431] Fix | Delete
[432] Fix | Delete
--
[433] Fix | Delete
-- Table structure for table `[[dbprefix]]email_template_group`
[434] Fix | Delete
--
[435] Fix | Delete
[436] Fix | Delete
CREATE TABLE `[[dbprefix]]email_template_group` (
[437] Fix | Delete
`tpl_id` int(11) NOT NULL AUTO_INCREMENT,
[438] Fix | Delete
`isactive` tinyint(1) unsigned NOT NULL DEFAULT '0',
[439] Fix | Delete
`name` varchar(32) NOT NULL DEFAULT '',
[440] Fix | Delete
`lang` varchar(16) NOT NULL DEFAULT 'en_US',
[441] Fix | Delete
`notes` text,
[442] Fix | Delete
`created` datetime NOT NULL,
[443] Fix | Delete
`updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
[444] Fix | Delete
PRIMARY KEY (`tpl_id`)
[445] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
[446] Fix | Delete
[447] Fix | Delete
--
[448] Fix | Delete
-- Dumping data for table `[[dbprefix]]email_template_group`
[449] Fix | Delete
--
[450] Fix | Delete
[451] Fix | Delete
INSERT INTO `[[dbprefix]]email_template_group` VALUES
[452] Fix | Delete
(1, 1, 'osTicket Default Template (HTML)', 'en_US', 'Default osTicket templates', '[[regtime]]', '[[regtime]]');
[453] Fix | Delete
[454] Fix | Delete
-- --------------------------------------------------------
[455] Fix | Delete
[456] Fix | Delete
--
[457] Fix | Delete
-- Table structure for table `[[dbprefix]]event`
[458] Fix | Delete
--
[459] Fix | Delete
[460] Fix | Delete
CREATE TABLE `[[dbprefix]]event` (
[461] Fix | Delete
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
[462] Fix | Delete
`name` varchar(60) NOT NULL,
[463] Fix | Delete
`description` varchar(60) DEFAULT NULL,
[464] Fix | Delete
PRIMARY KEY (`id`),
[465] Fix | Delete
UNIQUE KEY `name` (`name`)
[466] Fix | Delete
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=22 ;
[467] Fix | Delete
[468] Fix | Delete
--
[469] Fix | Delete
-- Dumping data for table `[[dbprefix]]event`
[470] Fix | Delete
--
[471] Fix | Delete
[472] Fix | Delete
INSERT INTO `[[dbprefix]]event` VALUES
[473] Fix | Delete
(1, 'created', NULL),
[474] Fix | Delete
(2, 'closed', NULL),
[475] Fix | Delete
(3, 'reopened', NULL),
[476] Fix | Delete
(4, 'assigned', NULL),
[477] Fix | Delete
(5, 'released', NULL),
[478] Fix | Delete
(6, 'transferred', NULL),
[479] Fix | Delete
(7, 'referred', NULL),
[480] Fix | Delete
(8, 'overdue', NULL),
[481] Fix | Delete
(9, 'edited', NULL),
[482] Fix | Delete
(10, 'viewed', NULL),
[483] Fix | Delete
(11, 'error', NULL),
[484] Fix | Delete
(12, 'collab', NULL),
[485] Fix | Delete
(13, 'resent', NULL),
[486] Fix | Delete
(14, 'deleted', NULL),
[487] Fix | Delete
(15, 'merged', NULL),
[488] Fix | Delete
(16, 'unlinked', NULL),
[489] Fix | Delete
(17, 'linked', NULL),
[490] Fix | Delete
(18, 'login', NULL),
[491] Fix | Delete
(19, 'logout', NULL),
[492] Fix | Delete
(20, 'message', NULL),
[493] Fix | Delete
(21, 'note', NULL);
[494] Fix | Delete
[495] Fix | Delete
-- --------------------------------------------------------
[496] Fix | Delete
[497] Fix | Delete
--
[498] Fix | Delete
-- Table structure for table `[[dbprefix]]faq`
[499] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function