-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathosticket-wTix.dump
More file actions
2820 lines (2529 loc) · 163 KB
/
osticket-wTix.dump
File metadata and controls
2820 lines (2529 loc) · 163 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 8.0.42, for Linux (x86_64)
--
-- Host: localhost Database: osticket
-- ------------------------------------------------------
-- Server version 8.0.42-0ubuntu0.22.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `ost__search`
--
DROP TABLE IF EXISTS `ost__search`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost__search` (
`object_type` varchar(8) NOT NULL,
`object_id` int unsigned NOT NULL,
`title` text CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci,
`content` text CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci,
PRIMARY KEY (`object_type`,`object_id`),
FULLTEXT KEY `search` (`title`,`content`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost__search`
--
LOCK TABLES `ost__search` WRITE;
/*!40000 ALTER TABLE `ost__search` DISABLE KEYS */;
INSERT INTO `ost__search` VALUES ('H',1,'osTicket Installed!','Thank you for choosing osTicket. Please make sure you join the osTicket forums and our mailing list to stay up to date on the latest news, security alerts and updates. The osTicket forums are also a great place to get assistance, guidance, tips, and help from other osTicket users. In addition to the forums, the osTicket Docs provides a useful collection of educational materials, documentation, and notes from the community. We welcome your contributions to the osTicket community. If you are looking for a greater level of support, we provide professional services and commercial support with guaranteed response times, and access to the core development team. We can also help customize osTicket or even add new features to the system to meet your unique needs. If the idea of managing and upgrading this osTicket installation is daunting, you can try osTicket as a hosted service at https://supportsystem.com/ -- no installation required and we can import your data! With SupportSystem\'s turnkey infrastructure, you get osTicket at its best, leaving you free to focus on your customers without the burden of making sure the application is stable, maintained, and secure. Cheers, - osTicket Team - https://osticket.com/ PS. Don\'t just make customers happy, make happy customers!');
INSERT INTO `ost__search` VALUES ('H',2,'','I was just using my computer when out of nowhere my screen turned black and a ransom demand came up. There is a bitcoin address to send 2BTC to and a counter is running. I\'m sending this ticket from my phone, since I can\'t login to my computer anymore. What do I do!?');
INSERT INTO `ost__search` VALUES ('H',3,'','Our automated backups of the database server are not able to complete within our one hour assigned window. This appears to be due to a massive increase in database field alterations sometime in the past couple of days. I don\'t know what\'s going on over in sales, but the sysadmin team really needs to be kept in the loop on major changes. In any case, it would be greatly appreciated if the security team could advocate for boosting the datacenter bandwidth allocation. Not having backups complete is a security issue as well as an IT one!');
INSERT INTO `ost__search` VALUES ('H',4,'','Hey could one of you security folks put in the password to spotify? I really need it to do my work and the IT team never responds to me. I keep getting prompted to enter the Administrator credentials while I\'m listening to my tunes and it\'s really annoying!');
INSERT INTO `ost__search` VALUES ('H',5,'','I got an email from Steve asking if I know the Spotify password. I think Steve works remotely, but I\'ve never met him. Is this a Phish?');
INSERT INTO `ost__search` VALUES ('O',1,'osTicket','');
INSERT INTO `ost__search` VALUES ('T',1,'746387 osTicket Installed!','');
INSERT INTO `ost__search` VALUES ('T',2,'734178 RANSOMWARE!','RANSOMWARE!');
INSERT INTO `ost__search` VALUES ('T',3,'961243 More bandwidth needed','More bandwidth needed');
INSERT INTO `ost__search` VALUES ('T',4,'874781 Spotify Install','Spotify Install');
INSERT INTO `ost__search` VALUES ('T',5,'688039 Phish?','Phish?');
INSERT INTO `ost__search` VALUES ('U',1,'osTicket Team','feedback@osticket.com');
INSERT INTO `ost__search` VALUES ('U',2,'Todd Tamile','555-1553 todd@sales.localhost\ntodd@sales.localhost');
INSERT INTO `ost__search` VALUES ('U',3,'Horatio Ham','555-1390 horatio@sysadmin.localhost\nhoratio@sysadmin.localhost');
INSERT INTO `ost__search` VALUES ('U',4,'Steve Sanders','555-1901 steve@sales.localhost\nsteve@sales.localhost');
INSERT INTO `ost__search` VALUES ('U',5,'Lilly Lamil','555-1290 lilly@accounting.localhost\nlilly@accounting.localhost');
/*!40000 ALTER TABLE `ost__search` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_api_key`
--
DROP TABLE IF EXISTS `ost_api_key`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_api_key` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`isactive` tinyint(1) NOT NULL DEFAULT '1',
`ipaddr` varchar(64) NOT NULL,
`apikey` varchar(255) NOT NULL,
`can_create_tickets` tinyint unsigned NOT NULL DEFAULT '1',
`can_exec_cron` tinyint unsigned NOT NULL DEFAULT '1',
`notes` text,
`updated` datetime NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `apikey` (`apikey`),
KEY `ipaddr` (`ipaddr`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_api_key`
--
LOCK TABLES `ost_api_key` WRITE;
/*!40000 ALTER TABLE `ost_api_key` DISABLE KEYS */;
/*!40000 ALTER TABLE `ost_api_key` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_attachment`
--
DROP TABLE IF EXISTS `ost_attachment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_attachment` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`object_id` int unsigned NOT NULL,
`type` char(1) NOT NULL,
`file_id` int unsigned NOT NULL,
`name` varchar(255) DEFAULT NULL,
`inline` tinyint unsigned NOT NULL DEFAULT '0',
`lang` varchar(16) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `file-type` (`object_id`,`file_id`,`type`),
UNIQUE KEY `file_object` (`file_id`,`object_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_attachment`
--
LOCK TABLES `ost_attachment` WRITE;
/*!40000 ALTER TABLE `ost_attachment` DISABLE KEYS */;
INSERT INTO `ost_attachment` VALUES (1,1,'C',2,NULL,0,NULL);
INSERT INTO `ost_attachment` VALUES (2,8,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (3,9,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (4,10,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (5,11,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (6,12,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (7,13,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (8,14,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (9,16,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (10,17,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (11,18,'T',1,NULL,1,NULL);
INSERT INTO `ost_attachment` VALUES (12,19,'T',1,NULL,1,NULL);
/*!40000 ALTER TABLE `ost_attachment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_canned_response`
--
DROP TABLE IF EXISTS `ost_canned_response`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_canned_response` (
`canned_id` int unsigned NOT NULL AUTO_INCREMENT,
`dept_id` int unsigned NOT NULL DEFAULT '0',
`isenabled` tinyint unsigned NOT NULL DEFAULT '1',
`title` varchar(255) NOT NULL DEFAULT '',
`response` text NOT NULL,
`lang` varchar(16) NOT NULL DEFAULT 'en_US',
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`canned_id`),
UNIQUE KEY `title` (`title`),
KEY `dept_id` (`dept_id`),
KEY `active` (`isenabled`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_canned_response`
--
LOCK TABLES `ost_canned_response` WRITE;
/*!40000 ALTER TABLE `ost_canned_response` DISABLE KEYS */;
INSERT INTO `ost_canned_response` VALUES (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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_canned_response` VALUES (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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
/*!40000 ALTER TABLE `ost_canned_response` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_config`
--
DROP TABLE IF EXISTS `ost_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_config` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`namespace` varchar(64) NOT NULL,
`key` varchar(64) NOT NULL,
`value` text NOT NULL,
`updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `namespace` (`namespace`,`key`)
) ENGINE=InnoDB AUTO_INCREMENT=102 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_config`
--
LOCK TABLES `ost_config` WRITE;
/*!40000 ALTER TABLE `ost_config` DISABLE KEYS */;
INSERT INTO `ost_config` VALUES (1,'core','admin_email','soc-user@ticketing.localhost','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (2,'core','helpdesk_url','http://ticketing.localhost/','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (3,'core','helpdesk_title','SOC-Desk','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (4,'core','schema_signature','5fb92bef17f3b603659e024c01cc7a59','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (5,'schedule.1','configuration','{\"holidays\":[4]}','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (6,'core','time_format','hh:mm a','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (7,'core','date_format','MM/dd/y','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (8,'core','datetime_format','MM/dd/y h:mm a','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (9,'core','daydatetime_format','EEE, MMM d y h:mm a','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (10,'core','default_priority_id','2','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (11,'core','enable_daylight_saving','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (12,'core','reply_separator','-- reply above this line --','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (13,'core','isonline','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (14,'core','staff_ip_binding','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (15,'core','staff_max_logins','4','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (16,'core','staff_login_timeout','2','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (17,'core','staff_session_timeout','30','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (18,'core','passwd_reset_period','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (19,'core','client_max_logins','4','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (20,'core','client_login_timeout','2','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (21,'core','client_session_timeout','30','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (22,'core','max_page_size','25','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (23,'core','max_open_tickets','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (24,'core','autolock_minutes','3','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (25,'core','default_smtp_id','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (26,'core','use_email_priority','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (27,'core','enable_kb','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (28,'core','enable_premade','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (29,'core','enable_captcha','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (30,'core','enable_auto_cron','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (31,'core','enable_mail_polling','','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (32,'core','send_sys_errors','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (33,'core','send_sql_errors','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (34,'core','send_login_errors','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (35,'core','save_email_headers','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (36,'core','strip_quoted_reply','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (37,'core','ticket_autoresponder','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (38,'core','message_autoresponder','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (39,'core','ticket_notice_active','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (40,'core','ticket_alert_active','0','2025-05-23 15:24:28');
INSERT INTO `ost_config` VALUES (41,'core','ticket_alert_admin','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (42,'core','ticket_alert_dept_manager','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (43,'core','ticket_alert_dept_members','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (44,'core','message_alert_active','0','2025-05-23 15:24:28');
INSERT INTO `ost_config` VALUES (45,'core','message_alert_laststaff','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (46,'core','message_alert_assigned','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (47,'core','message_alert_dept_manager','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (48,'core','note_alert_active','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (49,'core','note_alert_laststaff','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (50,'core','note_alert_assigned','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (51,'core','note_alert_dept_manager','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (52,'core','transfer_alert_active','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (53,'core','transfer_alert_assigned','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (54,'core','transfer_alert_dept_manager','1','2025-05-22 21:32:40');
INSERT INTO `ost_config` VALUES (55,'core','transfer_alert_dept_members','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (56,'core','overdue_alert_active','0','2025-05-23 15:24:29');
INSERT INTO `ost_config` VALUES (57,'core','overdue_alert_assigned','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (58,'core','overdue_alert_dept_manager','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (59,'core','overdue_alert_dept_members','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (60,'core','assigned_alert_active','0','2025-05-23 15:24:29');
INSERT INTO `ost_config` VALUES (61,'core','assigned_alert_staff','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (62,'core','assigned_alert_team_lead','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (63,'core','assigned_alert_team_members','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (64,'core','auto_claim_tickets','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (65,'core','auto_refer_closed','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (66,'core','collaborator_ticket_visibility','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (67,'core','require_topic_to_close','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (68,'core','show_related_tickets','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (69,'core','show_assigned_tickets','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (70,'core','show_answered_tickets','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (71,'core','hide_staff_name','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (72,'core','disable_agent_collabs','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (73,'core','overlimit_notice_active','0','2025-05-23 15:22:42');
INSERT INTO `ost_config` VALUES (74,'core','email_attachments','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (75,'core','ticket_number_format','######','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (76,'core','ticket_sequence_id','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (77,'core','queue_bucket_counts','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (78,'core','allow_external_images','','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (79,'core','task_number_format','#','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (80,'core','task_sequence_id','2','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (81,'core','log_level','2','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (82,'core','log_graceperiod','12','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (83,'core','client_registration','public','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (84,'core','default_ticket_queue','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (85,'core','embedded_domain_whitelist','youtube.com, dailymotion.com, vimeo.com, player.vimeo.com, web.microsoftstream.com','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (86,'core','max_file_size','1048576','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (87,'core','landing_page_id','1','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (88,'core','thank-you_page_id','2','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (89,'core','offline_page_id','3','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (90,'core','system_language','en_US','2025-05-22 21:32:41');
INSERT INTO `ost_config` VALUES (91,'mysqlsearch','reindex','0','2025-05-23 15:13:10');
INSERT INTO `ost_config` VALUES (92,'core','default_email_id','1','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (93,'core','alert_email_id','2','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (94,'core','default_dept_id','1','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (95,'core','default_sla_id','1','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (96,'core','schedule_id','1','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (97,'core','default_template_id','1','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (98,'core','default_timezone','America/New_York','2025-05-22 21:32:42');
INSERT INTO `ost_config` VALUES (99,'core','message_autoresponder_collabs','0','2025-05-23 15:24:28');
INSERT INTO `ost_config` VALUES (100,'core','ticket_alert_acct_manager','0','2025-05-23 15:24:28');
INSERT INTO `ost_config` VALUES (101,'core','message_alert_acct_manager','0','2025-05-23 15:24:28');
/*!40000 ALTER TABLE `ost_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_content`
--
DROP TABLE IF EXISTS `ost_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_content` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`isactive` tinyint unsigned NOT NULL DEFAULT '0',
`type` varchar(32) NOT NULL DEFAULT 'other',
`name` varchar(255) NOT NULL,
`body` text NOT NULL,
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_content`
--
LOCK TABLES `ost_content` WRITE;
/*!40000 ALTER TABLE `ost_content` DISABLE KEYS */;
INSERT INTO `ost_content` VALUES (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>.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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.','2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_content` VALUES (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','2025-05-22 17:32:41','2025-05-22 17:32:41');
/*!40000 ALTER TABLE `ost_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_department`
--
DROP TABLE IF EXISTS `ost_department`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_department` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`pid` int unsigned DEFAULT NULL,
`tpl_id` int unsigned NOT NULL DEFAULT '0',
`sla_id` int unsigned NOT NULL DEFAULT '0',
`schedule_id` int unsigned NOT NULL DEFAULT '0',
`email_id` int unsigned NOT NULL DEFAULT '0',
`autoresp_email_id` int unsigned NOT NULL DEFAULT '0',
`manager_id` int unsigned NOT NULL DEFAULT '0',
`flags` int unsigned NOT NULL DEFAULT '0',
`name` varchar(128) NOT NULL DEFAULT '',
`signature` text NOT NULL,
`ispublic` tinyint unsigned NOT NULL DEFAULT '1',
`group_membership` tinyint(1) NOT NULL DEFAULT '0',
`ticket_auto_response` tinyint(1) NOT NULL DEFAULT '1',
`message_auto_response` tinyint(1) NOT NULL DEFAULT '0',
`path` varchar(128) NOT NULL DEFAULT '/',
`updated` datetime NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`,`pid`),
KEY `manager_id` (`manager_id`),
KEY `autoresp_email_id` (`autoresp_email_id`),
KEY `tpl_id` (`tpl_id`),
KEY `flags` (`flags`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_department`
--
LOCK TABLES `ost_department` WRITE;
/*!40000 ALTER TABLE `ost_department` DISABLE KEYS */;
INSERT INTO `ost_department` VALUES (1,NULL,0,0,0,0,0,0,4,'Support','Support Department',1,1,1,1,'/1/','2025-05-22 17:32:37','2025-05-22 17:32:37');
INSERT INTO `ost_department` VALUES (2,NULL,0,1,0,0,0,0,4,'Sales','Sales and Customer Retention',1,1,1,1,'/2/','2025-05-22 17:32:37','2025-05-22 17:32:37');
INSERT INTO `ost_department` VALUES (3,NULL,0,0,0,0,0,0,4,'Maintenance','Maintenance Department',1,0,1,1,'/3/','2025-05-22 17:32:37','2025-05-22 17:32:37');
/*!40000 ALTER TABLE `ost_department` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_draft`
--
DROP TABLE IF EXISTS `ost_draft`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_draft` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`staff_id` int unsigned NOT NULL,
`namespace` varchar(32) NOT NULL DEFAULT '',
`body` text NOT NULL,
`extra` text,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `staff_id` (`staff_id`),
KEY `namespace` (`namespace`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_draft`
--
LOCK TABLES `ost_draft` WRITE;
/*!40000 ALTER TABLE `ost_draft` DISABLE KEYS */;
/*!40000 ALTER TABLE `ost_draft` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_email`
--
DROP TABLE IF EXISTS `ost_email`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_email` (
`email_id` int unsigned NOT NULL AUTO_INCREMENT,
`noautoresp` tinyint unsigned NOT NULL DEFAULT '0',
`priority_id` int unsigned NOT NULL DEFAULT '2',
`dept_id` int unsigned NOT NULL DEFAULT '0',
`topic_id` int unsigned NOT NULL DEFAULT '0',
`email` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`email_id`),
UNIQUE KEY `email` (`email`),
KEY `priority_id` (`priority_id`),
KEY `dept_id` (`dept_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_email`
--
LOCK TABLES `ost_email` WRITE;
/*!40000 ALTER TABLE `ost_email` DISABLE KEYS */;
INSERT INTO `ost_email` VALUES (1,0,2,1,0,'soc-desk@ticketing.localhost','Support',NULL,'2025-05-22 17:32:42','2025-05-22 17:32:42');
INSERT INTO `ost_email` VALUES (2,0,2,1,0,'alerts@ticketing.localhost','osTicket Alerts',NULL,'2025-05-22 17:32:42','2025-05-22 17:32:42');
INSERT INTO `ost_email` VALUES (3,0,2,1,0,'noreply@ticketing.localhost','',NULL,'2025-05-22 17:32:42','2025-05-22 17:32:42');
/*!40000 ALTER TABLE `ost_email` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_email_account`
--
DROP TABLE IF EXISTS `ost_email_account`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_email_account` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`email_id` int unsigned NOT NULL,
`type` enum('mailbox','smtp') NOT NULL DEFAULT 'mailbox',
`auth_bk` varchar(128) NOT NULL,
`auth_id` varchar(16) DEFAULT NULL,
`active` tinyint unsigned NOT NULL DEFAULT '0',
`host` varchar(128) NOT NULL DEFAULT '',
`port` int NOT NULL,
`folder` varchar(255) DEFAULT NULL,
`protocol` enum('IMAP','POP','SMTP','OTHER') NOT NULL DEFAULT 'OTHER',
`encryption` enum('NONE','AUTO','SSL') NOT NULL DEFAULT 'AUTO',
`fetchfreq` tinyint unsigned NOT NULL DEFAULT '5',
`fetchmax` tinyint unsigned DEFAULT '30',
`postfetch` enum('archive','delete','nothing') NOT NULL DEFAULT 'nothing',
`archivefolder` varchar(255) DEFAULT NULL,
`allow_spoofing` tinyint unsigned DEFAULT '0',
`num_errors` int unsigned NOT NULL DEFAULT '0',
`last_error_msg` tinytext,
`last_error` datetime DEFAULT NULL,
`last_activity` datetime DEFAULT NULL,
`created` datetime NOT NULL,
`updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `email_id` (`email_id`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_email_account`
--
LOCK TABLES `ost_email_account` WRITE;
/*!40000 ALTER TABLE `ost_email_account` DISABLE KEYS */;
/*!40000 ALTER TABLE `ost_email_account` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_email_template`
--
DROP TABLE IF EXISTS `ost_email_template`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_email_template` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`tpl_id` int unsigned NOT NULL,
`code_name` varchar(32) NOT NULL,
`subject` varchar(255) NOT NULL DEFAULT '',
`body` text NOT NULL,
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `template_lookup` (`tpl_id`,`code_name`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_email_template`
--
LOCK TABLES `ost_email_template` WRITE;
/*!40000 ALTER TABLE `ost_email_template` DISABLE KEYS */;
INSERT INTO `ost_email_template` VALUES (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=\"%{recipient.ticket_link}\">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=\"%{recipient.ticket_link}\"><span style=\"color:rgb(84, 141, 212)\">login to your account</span></a> for a complete archive of your support requests.</em></div>',NULL,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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=\"%{recipient.ticket_link}\">#%{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=\"%{recipient.ticket_link}\"><span style=\"color:rgb(84, 141, 212)\">login to your account</span></a> for a complete archive of your support requests.</em></div>',NULL,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (3,1,'message.autoresp','Message Confirmation','<h3><strong>Dear %{recipient.name.first},</strong></h3> Your reply to support request <a href=\"%{recipient.ticket_link}\">#%{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=\"%{recipient.ticket_link}\">online here</a></em> </div>',NULL,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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=\"%{recipient.ticket_link}\">#%{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=\"%{recipient.ticket_link}\">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=\"%{recipient.ticket_link}\"><span style=\"color:rgb(84, 141, 212)\">login to your account</span></a> for a complete archive of your support requests.</em></div>',NULL,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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=\"%{url}/tickets.php?e=%{ticket.email}\">login to our helpdesk</a>. <br /> <br /> Thank you,<br /> Support Ticket System',NULL,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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=\"%{recipient.ticket_link}\" 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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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=\"%{recipient.ticket_link}\" style=\"color:rgb(84, 141, 212)\">#%{ticket.number}</a>. To participate, simply reply to this email or <a href=\"%{recipient.ticket_link}\" style=\"color:rgb(84, 141, 212)\">click here</a> for a complete archive of the ticket thread.</em> </div>',NULL,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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} <%{ticket.email}> </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=\"%{ticket.staff_link}\">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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (9,1,'message.alert','New Message Alert','<h3><strong>Hi %{recipient.name},</strong></h3> New message appended to ticket <a href=\"%{ticket.staff_link}\">#%{ticket.number}</a> <br /> <br /> <table><tbody><tr><td><strong>From</strong>: </td> <td>%{poster.name} <%{ticket.email}> </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=\"%{ticket.staff_link}\"><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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (10,1,'note.alert','New Internal Activity Alert','<h3><strong>Hi %{recipient.name},</strong></h3> An agent has logged activity on ticket <a href=\"%{ticket.staff_link}\">#%{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=\"%{ticket.staff_link}\">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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (11,1,'assigned.alert','Ticket Assigned to you','<h3><strong>Hi %{assignee.name.first},</strong></h3> Ticket <a href=\"%{ticket.staff_link}\">#%{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} <%{ticket.email}> </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=\"%{ticket.staff_link}\"><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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (12,1,'transfer.alert','Ticket #%{ticket.number} transfer - %{ticket.dept.name}','<h3>Hi %{recipient.name},</h3> Ticket <a href=\"%{ticket.staff_link}\">#%{ticket.number}</a> has been transferred to the %{ticket.dept.name} department by <strong>%{staff.name.short}</strong> <br /> <br /> <blockquote><div>%{comments} </div></blockquote> <hr /> <div>To view or respond to the ticket, please <a href=\"%{ticket.staff_link}\">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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (13,1,'ticket.overdue','Stale Ticket Alert','<h3><strong>Hi %{recipient.name}</strong>,</h3> A ticket, <a href=\"%{ticket.staff_link}\">#%{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=\"%{ticket.staff_link}\"><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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (14,1,'task.alert','New Task Alert','<h2>Hi %{recipient.name},</h2> New task <a href=\"%{task.staff_link}\">#%{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=\"%{task.staff_link}\">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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (16,1,'task.activity.alert','Task Activity [#%{task.number}] - %{activity.title}','<h3><strong>Hi %{recipient.name},</strong></h3> Task <a href=\"%{task.staff_link}\">#%{task.number}</a> updated: %{activity.description} <br /> <br /> %{message} <br /> <br /> <hr /> <div>To view or respond to the task, please <a href=\"%{task.staff_link}\"><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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (17,1,'task.assignment.alert','Task Assigned to you','<h3><strong>Hi %{assignee.name.first},</strong></h3> Task <a href=\"%{task.staff_link}\">#%{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=\"%{task.staff_link}\"><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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (18,1,'task.transfer.alert','Task #%{task.number} transfer - %{task.dept.name}','<h3>Hi %{recipient.name},</h3> Task <a href=\"%{task.staff_link}\">#%{task.number}</a> has been transferred to the %{task.dept.name} department by <strong>%{staff.name.short}</strong> <br /> <br /> <blockquote><div>%{comments} </div></blockquote> <hr /> <div>To view or respond to the task, please <a href=\"%{task.staff_link}\">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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
INSERT INTO `ost_email_template` VALUES (19,1,'task.overdue.alert','Stale Task Alert','<h3><strong>Hi %{recipient.name}</strong>,</h3> A task, <a href=\"%{task.staff_link}\">#%{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=\"%{task.staff_link}\"><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,'2025-05-22 17:32:41','2025-05-22 17:32:41');
/*!40000 ALTER TABLE `ost_email_template` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_email_template_group`
--
DROP TABLE IF EXISTS `ost_email_template_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_email_template_group` (
`tpl_id` int NOT NULL AUTO_INCREMENT,
`isactive` tinyint unsigned NOT NULL DEFAULT '0',
`name` varchar(32) NOT NULL DEFAULT '',
`lang` varchar(16) NOT NULL DEFAULT 'en_US',
`notes` text,
`created` datetime NOT NULL,
`updated` timestamp NOT NULL,
PRIMARY KEY (`tpl_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_email_template_group`
--
LOCK TABLES `ost_email_template_group` WRITE;
/*!40000 ALTER TABLE `ost_email_template_group` DISABLE KEYS */;
INSERT INTO `ost_email_template_group` VALUES (1,1,'osTicket Default Template (HTML)','en_US','Default osTicket templates','2025-05-22 17:32:41','2025-05-22 21:32:41');
/*!40000 ALTER TABLE `ost_email_template_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_event`
--
DROP TABLE IF EXISTS `ost_event`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_event` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) NOT NULL,
`description` varchar(60) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_event`
--
LOCK TABLES `ost_event` WRITE;
/*!40000 ALTER TABLE `ost_event` DISABLE KEYS */;
INSERT INTO `ost_event` VALUES (1,'created',NULL);
INSERT INTO `ost_event` VALUES (2,'closed',NULL);
INSERT INTO `ost_event` VALUES (3,'reopened',NULL);
INSERT INTO `ost_event` VALUES (4,'assigned',NULL);
INSERT INTO `ost_event` VALUES (5,'released',NULL);
INSERT INTO `ost_event` VALUES (6,'transferred',NULL);
INSERT INTO `ost_event` VALUES (7,'referred',NULL);
INSERT INTO `ost_event` VALUES (8,'overdue',NULL);
INSERT INTO `ost_event` VALUES (9,'edited',NULL);
INSERT INTO `ost_event` VALUES (10,'viewed',NULL);
INSERT INTO `ost_event` VALUES (11,'error',NULL);
INSERT INTO `ost_event` VALUES (12,'collab',NULL);
INSERT INTO `ost_event` VALUES (13,'resent',NULL);
INSERT INTO `ost_event` VALUES (14,'deleted',NULL);
INSERT INTO `ost_event` VALUES (15,'merged',NULL);
INSERT INTO `ost_event` VALUES (16,'unlinked',NULL);
INSERT INTO `ost_event` VALUES (17,'linked',NULL);
INSERT INTO `ost_event` VALUES (18,'login',NULL);
INSERT INTO `ost_event` VALUES (19,'logout',NULL);
INSERT INTO `ost_event` VALUES (20,'message',NULL);
INSERT INTO `ost_event` VALUES (21,'note',NULL);
/*!40000 ALTER TABLE `ost_event` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_faq`
--
DROP TABLE IF EXISTS `ost_faq`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_faq` (
`faq_id` int unsigned NOT NULL AUTO_INCREMENT,
`category_id` int unsigned NOT NULL DEFAULT '0',
`ispublished` tinyint unsigned NOT NULL DEFAULT '0',
`question` varchar(255) NOT NULL,
`answer` text NOT NULL,
`keywords` tinytext,
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`faq_id`),
UNIQUE KEY `question` (`question`),
KEY `category_id` (`category_id`),
KEY `ispublished` (`ispublished`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_faq`
--
LOCK TABLES `ost_faq` WRITE;
/*!40000 ALTER TABLE `ost_faq` DISABLE KEYS */;
/*!40000 ALTER TABLE `ost_faq` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_faq_category`
--
DROP TABLE IF EXISTS `ost_faq_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_faq_category` (
`category_id` int unsigned NOT NULL AUTO_INCREMENT,
`category_pid` int unsigned DEFAULT NULL,
`ispublic` tinyint unsigned NOT NULL DEFAULT '0',
`name` varchar(125) DEFAULT NULL,
`description` text NOT NULL,
`notes` tinytext NOT NULL,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`category_id`),
KEY `ispublic` (`ispublic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_faq_category`
--
LOCK TABLES `ost_faq_category` WRITE;
/*!40000 ALTER TABLE `ost_faq_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `ost_faq_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_faq_topic`
--
DROP TABLE IF EXISTS `ost_faq_topic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_faq_topic` (
`faq_id` int unsigned NOT NULL,
`topic_id` int unsigned NOT NULL,
PRIMARY KEY (`faq_id`,`topic_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_faq_topic`
--
LOCK TABLES `ost_faq_topic` WRITE;
/*!40000 ALTER TABLE `ost_faq_topic` DISABLE KEYS */;
/*!40000 ALTER TABLE `ost_faq_topic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_file`
--
DROP TABLE IF EXISTS `ost_file`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_file` (
`id` int NOT NULL AUTO_INCREMENT,
`ft` char(1) NOT NULL DEFAULT 'T',
`bk` char(1) NOT NULL DEFAULT 'D',
`type` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
`size` bigint unsigned NOT NULL DEFAULT '0',
`key` varchar(86) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
`signature` varchar(86) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`attrs` varchar(255) DEFAULT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `ft` (`ft`),
KEY `key` (`key`),
KEY `signature` (`signature`),
KEY `type` (`type`),
KEY `created` (`created`),
KEY `size` (`size`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_file`
--
LOCK TABLES `ost_file` WRITE;
/*!40000 ALTER TABLE `ost_file` DISABLE KEYS */;
INSERT INTO `ost_file` VALUES (1,'T','D','image/png',9452,'b56944cb4722cc5cda9d1e23a3ea7fbc','gjMyblHhAxCQvzLfPBW3EjMUY1AmQQmz','powered-by-osticket.png',NULL,'2025-05-22 17:32:39');
INSERT INTO `ost_file` VALUES (2,'T','D','text/plain',24,'G1YvoMWtx86n3ccfeGGNagoRoTDtol7o','MWtx86n3ccfeGGNafaacpitTxmJ4h3Ls','osTicket.txt',NULL,'2025-05-22 17:32:41');
/*!40000 ALTER TABLE `ost_file` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_file_chunk`
--
DROP TABLE IF EXISTS `ost_file_chunk`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_file_chunk` (
`file_id` int NOT NULL,
`chunk_id` int NOT NULL,
`filedata` longblob NOT NULL,
PRIMARY KEY (`file_id`,`chunk_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_file_chunk`
--
LOCK TABLES `ost_file_chunk` WRITE;
/*!40000 ALTER TABLE `ost_file_chunk` DISABLE KEYS */;
INSERT INTO `ost_file_chunk` VALUES (1,0,_binary 'PNG\r\n\Z\n\0\0\0\rIHDR\0\0\0\Ú\0\0\0(\0\0\0G\ä\É\0\0\nCiCCPICC profile\0\0xÚSwX\÷>\ß\÷eVB\Ø\ð±l\0\"#¬\ÈY¢\0a@Å
\nVHUÄ\Õ\nH\â (¸gAZU\\8\îܧµ}z\ï\í\íû\×û¼\ç\çü\Îy\Ï&\æ¢j\09R
<:\ØOH\ÄɽH\à \æ\Ë\Âg\Å\0\0\ðyx~t°?ü¯o\0\0p\Õ.$\Ç\áÿºP&W\0 \0\à\"\çR\0\È.T\È\0\È\0°S³d\n\0\0\0ly|B\"\0ª\r\0\ì\ôI>\0Ø©\Ü\0Ø¢©\0\0(G$@»\0`UR,À\Â\0 ¬@\".À®Y¶2G½\0vX@`\0B,\Ì\0 8\0C\Í L 0Ò¿\à©_p
¸H\0ÀËÍK\Ò3¸\Ð\Zw\ò\ð\à\â!\â\Âl±Ba)f \ä\"#H\çL\Î\0\0\Zù\ÑÁþ8?\ç\æ\ä\á\æf\çl\ï\ôÅ¢þk\ðo\">!\ñ\ßþ¼\0N\Ï\ï\Ú_\å\å\Öp\ǰu¿k©[\0\ÚV\0h\ßù]3\Û Z\n\Ðzùy8ü@¡P\È<\n\í%b¡½0\ã>ÿ3\áo\à~\öü@þ\Ûz\ð\0q@À£ýqanv®R\ç\ËB1n\÷\ç#þÇ
ý)\Ñ\â4±\\,\ñX¸P\"M\Çy¹RD!É\â\é2\ñý w\r\0¬OÀN¶µ\ËlÀ~\îX\Òv\0@~\ó-\Z\0g42y\÷\0\0¿ù@+\0ͤ\ã\0\0¼\è\\¨L\Æ\0\0D *°AÁ¬ÀÁ¼ÀaD@$À<B\ä\n¡ATÀ:\ص°\Z \á´Á18\r\ç\à\\\ëp`\¼ A\Èa!:b\Ø\"\Î\"aH4¤ \éQ\"\Å\Èr¤©Bj]H#\ò-r9\\@ú\Û\È 2ü¼G1²Q\Ôu@¹¨\ZÆ s\Ñt4]¢k\Ñ\Z´=¶¢§\ÑK\èut\0}c\Ñ1f\Ùa\\E`X\Z&\Çc\åX5V5cX7vÀa\ï$\ì^\ÂlGXLXC¨%\ì#´ºW 1\Â\'\"¨O´%zù\Äxb:±XF¬&\î!!%^\'_H$É\äN\n!%2IIkH\ÛH-¤S¤>\ÒiL&\ëm\É\Þ\䲬 ·Oû\É\Ã\ä·:Å\âL ¢$R¤J5e?\å¥2B ªQÍ©\Ôª:ZIm vP/S©4u%ÍCˤ-£\ÕÐigi\÷h/\étº ÝEÐ\Òk\è\é\ç\é\ôw\r\r\ÇHb(k{§·/L¦Ó\ÈT0\×2goUX*\ö*|\Ê:V~\çªTUsU?\ÕyªT«U«^V}¦FU³P\ã© \Ô«Õ©U»©6®\ÎRwRP\ÏQ_£¾_ýúc\r²
F H£Tc·\Æ!\Æ2e\ñXB\ÖrV\ë,kMb[²ù\ìLvûv/{LSCsªf¬ff\æq\ÍÆ±\à\ð9ÙJ\Î!\Î\r\Î{--?-±\Öjf~7\ÚzÚ¾\Úb\ír\í\í\ë\Ú\ïup@,\õ:m:\÷u º6ºQº
º\Ûu\Ï\ê>\Óc\ëy\é \õ\Ê\õ\é\Ý\ÑG\õm\ô£\õ\ê\ï\Ö\ï\Ñ7046l18c\ðÌc\èki¸\Ñ\ð\á¨\Ëhº\Äh£\ÑI£\'¸&\îg\ã5x>f¬ob¬4\Þe\Ük<abi2ۤĤ\Å\ä¾)ÍkfºÑ´\Ót\Ì\Ì\È,ܬج\É\ì9Õka¾Ù¼\Ûü
¥E\ÅJ6ÇÚ|\ËM\÷¬V>VyV\õV׬I\Ö\\\ë,\ëm\ÖWlPW:˶¨\Ävm\ß\â)\Ò)\õSn\Ú1\ìü\ì\n\ì\ì\í9\öa\ö%\öm\ö\Ï\Ì\Ö;t;|rtu\Ìvlp¼\ë¤\á4éĩ\Ã\éWgg¡s\ó5¦K\ËvSm§§nzË\å\Z\îºÒµ\Ó\õ£»Ü\Ùm\Ô\Ý\Ì=\Å}«ûM.\É]\Ã=\ïA\ô\ð\÷X\âq\Ìã§§\Â\ó\ç/^v^Y^û½O³&\Ö0m\È\Û\Ä[\à½\Ë{`:>=eú\Î\é>\Æ>z¾¦¾\"\ß=¾#~\Ö~~üû;ú\Ëýø¿\áy\ò\ñN`Á\å½\Z³k¥5»/>B \rYroÀ\òùc3\Üg,\Ñ\ÊZú0\Ì&L\Ö\Ï\ß~o¦ùL\é̶\àGl¸iù})*2ª.\êQ´Stqt\÷,Ö¬\äYûg½ñ©¹;\Ûj¶rvg¬jlRlc츸ª¸xøE\ñt$ \í\ä\Ä\Ø\Ä=\ãs\çl3\äTtc®\åÜ¢¹\æ\é\ÎËw<Y5Y|8
²?\å BP/O\å§nMò
OE¾¢¢Q±·¸J<\æV\ö8\Ý;}CúhOFu\Æ3 OR+y¹#\óMVD\ÖÞ¬\Ï\Ùq\Ù-9£R\ri´+\×0·(·Of++\r\äy\æm\Ê\Ê\÷\ä#ùs\ó\Ûl
LÑ£´R®PL/¨+x[[x¸H½HZ\Ô3\ßfþ\êù#|½°P¸°³Ø¸xY\ñ\à\"¿E»#Sw.1]Rºdxi\ð\Ò}\Ëh˲ýP\âXRU\òjy\Ü\òRÒ¥¥C+W4©\É\Ën®\ôZ¹cadU\ïj\Õ[V*_¬p¬¨®ø°F¸\æ\âWN_\Õ|\õym\Ú\Ú\ÞJ·\Ê\í\ëH\ë¤\ën¬\÷Y¿¯J½jA\ÕÐ\ð\r\ñ\å_mJ\Þt¡zj\õÍ´\Í\Ê\Í5a5\í[̶¬\Û\ò¡6£\öz]\ËVý«·¾\Ù&\ÚÖ¿\Ýw{\ó;\Þ\ïì¼µ+xWk½E}\õn\Ò\îÝ\Zbº¿\æ~ݸGwOÅ{¥{\öE\ï\ëjtolܯ¿¿² mR6H:påoÚ\íwµpZ*\ÂA\åÁ\'ߦ|{\ãP\è¡\Î\Ã\Ü\Ã\Íß·\õ\ëHy+\Ò:¿u¬-£m =¡½\ïè£^G¾·ÿ~\ï1\ãcu\Ç5W (=\ñùä\ã§d§N?=Ô\Üy\÷Lük]Q]½gCÏ?t\îL·_\÷\É\ó\Þ\ç]\ð¼p\ô\"\÷b\Û%·K=®=G~pý\áH¯[o\ëe\÷\Ë\íW<®t\ôM\ë;\Ñ\ï\ÓújÀ\Õs\×ø\×.]y½\ï\Æ\ì·n&\ݸ%º\õøv\ö\íw\n\îL\Ü]zx¯ü¾\Úý\êú\ê´þ±eÀm\àø`À`\Ï\ÃY\ï þÿÓ\á\ÒG\ÌG\Õ#F#\r\Z½\òdÎá§²§\Ï\Ê~Vÿy\ës«\ç\ßý\âûK\ÏXü\Ø\ðùÏ¿®y©\órï«©¯:\Ç#\Ǽ\Îy=\ñ¦ü\Î\Û}\ï¸\ïº\ßǽ(ü@þP\ó\Ñúcǧ\ÐO\÷>\ç|þü/\÷\óû9%\0\0\0tEXtSoftware\0Adobe ImageReadyq\Ée<\0\0(iTXtXML:com.adobe.xmp\0\0\0\0\0<?xpacket begin=\"\" id=\"W5M0MpCehiHzreSzNTczkc9d\"?> <x:xmpmeta xmlns:x=\"adobe:ns:meta/\" x:xmptk=\"Adobe XMP Core 5.6-c014 79.156797, 2014/08/20-09:53:02 \"> <rdf:RDF xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"> <rdf:Description rdf:about=\"\" xmlns:xmp=\"http://ns.adobe.com/xap/1.0/\" xmlns:xmpMM=\"http://ns.adobe.com/xap/1.0/mm/\" xmlns:stRef=\"http://ns.adobe.com/xap/1.0/sType/ResourceRef#\" xmp:CreatorTool=\"Adobe Photoshop CC 2014 (Macintosh)\" xmpMM:InstanceID=\"xmp.iid:6E2C95DEA67311E4BDCDDF91FAF94DA5\" xmpMM:DocumentID=\"xmp.did:6E2C95DFA67311E4BDCDDF91FAF94DA5\"> <xmpMM:DerivedFrom stRef:instanceID=\"xmp.iid:CFA74E4FA67111E4BDCDDF91FAF94DA5\" stRef:documentID=\"xmp.did:CFA74E50A67111E4BDCDDF91FAF94DA5\"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end=\"r\"?>þ\ö\Ê\0\0IDATx\Ú\ì] S\Õ\Õ?/{2\Édfaq]67\ÐÏ(*¨-\n\ö\ó³¶.\õ+\ÖÖ
º nµJÁ\öSR´\Õ:VDT¤,e\Ñ2¨l ¬\ì3\Ì\ÂL\÷Ýüos\æN\ÉPq\Ìùý$\÷\î»\÷ü\Ïùs\ï»1NY96¤\Út\Ò\Ø\î\ïS±/Q\Äý]k~K¡
\îz\Ð\í>%4ߤ\Ò5ºú<²\Ù,²\ÍclmY\ó\Î\Ê\'\ô\ÇB¯h\ô·£B\óLZ¸\ÞM?¤°\0]sG\Ö>¾\×\âZ(4W¨]h\r\"Ò¾&F4]þ¶?JKD$úF>Yd-}QZY e\å»)*t\ÐÓ¶\ê\à$»\r =(t\Ð\éBg =Á¹\íø_´¢ÑQ\0m\ÆV\í+³SvaDW\Çg\öýB¯ú¿B»eø\ÞB¯ºL\èH¡\Ò#t\ó»B\Ç ýmFW\0;t\È _\Ù\ì@\ÍÑ¿x\Þ.t!¿[\Î!#\à\\¡\÷\ã|\É\äW:\÷\Ø\rG³ I³·9\é\Ò*Ê6Ë\ÈùJk¡S
þA\èqGÀN¼\09¤EB\ïM¹~-4?í\Õ~\ã I}\Ô&·y\åeY\ê\Øü\å¡o\n\íu\Ï{.r»½Bk¸\Öiv?úLG·´Ñµj\È-+\ßQæ£\02%>\ä|\Ê\ï(^\Í\ß\n\êX\è\Ær³\æT\Ò\ÏR\Ç\æ-*\öÿ®-\ã\ÑR¡Ë
V±¿\ËBI\Ë:G\ÊT\Ì#þ\É5iþ\ZE\"F\ólD;\æ\\_\äp¾ýsj\Êd\ñ\õB\"t\ÐB)\ô2\äw\ß\Ä\ïÏ»\÷`\æ\ôФ^¶\ÑMnA!\æ<¬Y\Ë>¼¥\í§\ö\n«kt\õM\æJw%ù»<.ÿ\Ý\Â\ÃB¿U\\G\ñBI?ç¦]\0\Ìo\Æ\Ð\ô\å^ý\ô¥ºeF&.\÷\×a\Ça5\ï±Í\÷±#Ò£o>¤=L^«\Ñþ]F\Ú\ßJ
N\0G¹ùã
¾V\Zú¢!q#!\Å\Û\éÀ6=X\ê§9\\T2\Èﲨ{«c\Ñæ³,Ð)zak³l´ú@1\õ\Ï\ß{¡^£ýMF¡_b\Õ\æ(7ý9¡£+\'J«\Ö{h\ñn\ê¡[\\\ôhiµ\óGc41\'\'±M\ëû1¶³\Ï>;k\áÇL¿\Þ\ÜÝú·\Ø$\Ü|\Æ~\ð,Ýx\ß ¶l\Ú\â(4W.\Ó\ZAjÕ\Âr\â\ãsr\ÉWµ\ÉM\ÐWr\Ý\"zµh«>²\í;§YçªE,0Þ\\¾\\1\ïb\ﺯ\å\"\á\'¾Áx\Ëü\êu\ÐLY\ÌÈ£x9\ß)´ù^[\0P\ôXV\çNX\á¥Í»T(\"Y¶u\ßWevÝRU\ØC55A\ò\ØC\ÐGY6?½ÿ@\è«\Ú1kVS|9\ÈI\îX\Ê\è£\Ä*rD\Ê\"\öL¡Î=*@4\é«=N\ÊwZj9¾%p\É\ö\Ê%a\í\ñ~\ÐyBeø\íµ´¢¢\r\ì\ìK\Ã;HT\ëo\è+)¾Q\É_Ÿt¡\Ô\ëcI\ìUȱB\"VÚª\ÈVg>L\ÊvW¦S\â1|\òX»¶\îpѰ\Éy´\í Zx£rR\Å\'·# °)ý\ÅWHª[ Ô\ö\ʺ± \Ý(#\ò=B2ûC¡Û²@\ËJL,H$\Ëݵ(\ñN)2©°\'¿ä®\Zµ\Ô/*\Ï\ð\'rZKD\ÜûV((\ß\Õg ²Å{\ÆP]aY\Ç ¹jß=B³\n\"4~nVnwR\÷¶XF\ñUÿrQsÎJd\ä\Ü\Zz¾\ô7\"\ày¡7e©cV¸ª\éý½\Ý\è\ä\à\ê%BþT`\Ë
S\òO\Ð;]NNy±X\Þz7\â¶s´\Ñ}\ó\ô\ä~j/¨ß¬\rnª´·\ÒF\Ãz\×\Ð\È*\ÄfÛæ´5)\×\ÜE\è¡EK|\ô\Öj·4\Èù4\rI.\òÂx¶\Í\Û\Ä.jÀ6¨GJG_\÷ÓZz1`Nx\ãP\ã<8¦^þ\È$6v\ÔhUY\õ\n\ìG¶\ä\ójrÞ¬/^\ïD¥¤a\ÝS£ÛIm·L\Zû^ fZ\ËA36ºck \å{,\Z9 Rܱ@WµQ% °Z\äd\ó·\×\ãWm\öo\'rK\ÇJ\ö\öU0\Ã7YÞ§D~&*¯\Ø\ò\Ñÿ1~ÿ\é
&=PH: \ï\ÇeÖ°È~¹|\Ôd4Å:\æÒ\â\ë\n\Û\ã{\ÔÅ£Tǹ+h²,\ó\Ö9wwª\Íz\äüX\0¯¿ý\Ò\å-K\ÌN/R\Û\ð\Í\Ï\Ì\Ì\r\Ý3-H
h+apymv+\Ò\Êgɧ¥7·\òE#\ó¶:\é\ê*¹\ò\Û\êZ;xù\×Îw\É*¯Kq¨8W\àQ\Ìȶ<\ð{X&Ò£xPTR\Ï;PÄ ü#²%·\'\í\ÈH/¼d¢&A\ñy©ø? ²\åLjÈ6\á=\"²9¡t9\Z_¨»2I$\Û\õ\0\éK\í,\Ú-\"\Ùh²ùg.\Ýþv°°8ß¼\Éa=¨Ù]MV*D-z²c0:\òz7y\ßÉ£Gϯ(/y=¿|Ò§^[¹Óº¶ca\äq>ѺQj\Ð\Ç)¾bD¯\ÙkyJ@\ãý\Öc\å¤K·¡ £leh\rK\Ñ\Å)¨\ãAxnývF8\rJ¶Bww*%Gl^ÍÌ*ùDûLV\Üþª )Q\ÓxÀ\æ1\×NT\ñ7o\æ\Ñ.\ß|\Îe§S¢V\ì>^\Ñ\Èü\èB/\ZÒ½\Ç\ÍqSE\Þ\ö\Å>;-\Þ\î41út¯\ö¡¦iD\Åç8U}\'\Ñ\"\ôOB\Ïz#\ñ\Í\Å\Þw¢øv8;¹\ìIºF>\È:Ô¹³ã°\âO4D\å\å³r\Ö\á\ÆS\Ým\ò.¦øF!%¦8äI¬y\"úº§\áe\Û*H\àNE\Ãf£t5\Å\çK#Á®LB\â\ç\ÅEÁ3\ã\Ù6P \Ëý$V72\ö\ã;\Ü\èP\"1úÃȹ ù\à\ò\ġڹ\Ô\\y¨\Õ \ä(ªrÿ\"ªW²>ª\ÝzúS\ñ}\ê|?A\È6N£øyÎp9H«\0¢\Ä6\Â16ʧP\ÔZ}i\Í\"§²R7\Å%\ÞO\Þ\èÄû\íÑkCU!j/@61\à²z \Ê\'\ó[~¥\åw×£ú7V\0q_®+\ö}\êo^e4\"6¶½Â¨\ôsþ¶\ô!\Å\×\\r\â\ÊkJNT\ò$@Q\÷Nª¿®S\Éù ¥\é\æ\Ì$yZ(_\õ:\ë{\éÀ\äW,¤\r·/¹u¹\Zs\Öx\çѰqh\è\Ø\æ\ç«\Ð.\Þ} \ìg(¾b[\Z\Ös\ðL7\ãüRF¡\ä+¯%¡(Á\ßG\Ã8\"\ð4¤r\ê)\Ú5V\Â6I\ÙF\õ\r:\ï XR>9±\ÚQ;G)Ú´\ï\ï¦øÀ^\ÓLȰR\Æ#\Ì\Ó.c\à/ \õÀ5/d\ÔIzf9¹,\ç\æ}Og+>{8¾²¾xq\ï*\ê\îÀk¹^\ßZ`5¢\Êr¹uÀ\ÜuúºÊ ¾\è\"I\ÍE[uT\\µ\n\Ñq\È\ßf\åº-\éϵ\âͺ/I4%8´{0\Æ7\"W+k «¼T
Ga_\édC:¶\ö¨2\Ù\Æ\á¸\ßv\0\ÝY\ì\óµ\È-»£\ß{À¶ú0ÇN\ì6Vý\ñ\Â\àû!1ýy\0@LFy\è@:\ö:x\æ:¬/+Eîu.^f=0 ²W\ÈV\"b
¦K\Ð5¬3G \íht¸#À+Á\õ>?\÷\àǽ=\ö0}0\Ît ɼ\×´u\rþV¶\Ê9¬)ftѼ~;¼W9Xt\ÈtÆ#)\n6Exý9r¢\ó\á8¸¼\ë_K\Ì¥g\è\æDû\쬿+ ȸ¼\n\ì\áZ\ôþu\ï-@\ßG\ð\ÝL\Ê\ò©¢\ÝM\Z\È\Â`\Ò\ñ^N\ñ\r^F¥È« \Ç\Ý\È\Þ\Ï` #¸\ÎbL\åFD\Ú~xÖ@7\Ó:\É\Ûþ!l\ò1Àl\Z\'þ9@p)b\áPbN\æUP®\óq¬\â¬\÷\ñþt\è8\"\'ª\r\\&!ª²·\ã&OGG×b\Þnf`]\Ê0\ç\èN=m?\Ïk\õ\Â\ë\ÛX\ïF$?µ±2übP\n±ÁØp¶0\ë{\õEAoh¿|®\êdùY\ë·E,\ÇqjQe0\×\íT`\Ò\ËK|4bf.\äD\Éf\õ\Úo³\èN\ÔDøÃª\Òý=l,uÙ1¹\\£¤v\ßU¼\îP°wÀB®G_û)1§\0»No©°¡¥C\Ø\ç\Ä\Æ\ç&Òû\Øç\Í<Pq~ÿ6ª®²cmZÀ\æb>\Æ \\£U\ñ£ÿ\' øyø>!ܶF¾\äG´,\ÍG\ä²\ÊMO\Éf \ÊuQ\ç\ìÀ\Õ\àýnxª©ªH\ðrL<\Ü4?f/\å qR¦\êJʿɤ%e\"£\È2s!Ö§!¨¯\'\ó~\Ë\ëp\r#Je\å¹+R=u\Ëúm£^J¾U|¨²\ÊF\ïopC¼\öú(h_oI3\Ì]puB4û+®q.¢\ÖC¶I[\ÙIMgTm(üF\òFg/\"\êX·®Aÿ\ð]¯\03#°¨)I\Î5\ãr\جÀcÓ¨}ʪ\ãG\Úû
@©@Q¾|\0º\ÂE(N\åw\ØÌ¥þuD\ÎK\0þh\Ô*\äYªC¥.1\Û\àUrX4<y¢\ÅÌ;²\Èù_B¿@D1p~mx\ÞV\ËÞ¯\è»g´5Ze\ò+x\Ð\ã\àH¶\Ì\'\ÃP\rD龬\ëlwú\öP\Í\Ìdùx\ì>]h\÷üB°\ÕG¼¾\ÔG¯\ðR·Â|\È\Ò`ý\éQ\ì\êv\ð¢\ÛÓ ÀB¿C,Eî¶ROøg*µ\÷/6\òû9 pª8!Ä\æì¯ q\"BZ45xH2Å¢-G: I83%©¾\Õ$\ñ|aY\Û\0<Ü´¤Z½\ÈW³\Ø0\ì&ª\Ñ\æ\ÏaTn\Í\àU¹\ØÃ¢\ÓZt¦epª\Z\Ø\Ôi#E¿F¨6\Îý\é*\Û\í\\\ç\óo¾&H\' =\Ðc6¹m\"Ķ6¨W\é\Æ\ÜJVQSq*겨b§¦,\óQ ©d¶±{\Î4\Ò\ð{r²±\Êu!Ʋ\è\×F¡n£¦-èµ\Ì7a®\íL¸\ê7i@\ã{PLé®%$\Â(\Ð\ô\'qû°c¶\Ãw``@ù5 ´e\öÀ°\Ô\ã\Z²\È\ò9ÀfÕ£¡V%\õ®¯¢M(ëúq\Îa\ðú\ês¾\ß\÷Q\è¨w^\Ëw\Ò\nRZ0DzE\ÍO\àtn`Å\Åè¸eY=\Þm.ù\÷\'2_ªýCN`Æ®(!k\ÇûM\ÐÄû4uº%¼4)±H¦[ø\Ð/ª;\õý}\\þ8*\äXü\Ô=Mwh\r\Zt\n\Ñ\\\'\"\Ü\nÆ\ìZ~M3µ-9\Ù8\ÚR8¤g_@uWNÀ\æ4º²êϹ5b5\Ë\óT^RcSVh§b\à>b\0#\ä\Ø5:¡,ûw\ÌcT§¨Pma\×ù¢ú¼\'¦ þE e0\ÃXÔBIFx\\y¾ÀU\ì\õ\"8¡r\ã\õ[üE\Þr:!5dIA\Çh\í\'Z4Wt°¶¶¯g\Î4é²\öv\ä<\ÇQý]-\ôÿ\\\â\ØA(5`m,¯ çÂV¨\ZúXd¯\Ñ*¦\çPb\õ<¦B%+û#c.V* \é\íP,VÕy(:\0°F#\"|Fu7Áªl+\0(¿´\ïÅ\ôb\ó²\Ì`xÚPRý7Õ*)ù.^U(\è\\Î\÷;¶è«PÐ\0y\ZÀ\ê\Ç\ñ\èü\0j\Ë\ì8§ý\Z\Ç\Ð\ó\Þ\Ýy\Ùd
Q\æe©®Z\ó \ÆEOÀ·ý\Ûh\Âu)\Ð\Ðîµ´h»3¶![SU\Ä\'¨\á_qü¢\õ\Ç(.ýRO¯B\Ñb\òºWѶh\ï¯ÔG\r\ÈN«\ÖÀ)\Î\î\é|V¦FühÿÁ&D]\î\ô\êE4 ky6hw\â\õ =\ß\à\Ä?D©½\'³¹uüb-\áTsûG²yy¬`8¢\ß\Ç<
\na+V\Â\rh\÷2 \óx«1\×ÑMA¼y)l\Þk$¸ü³¬H\Ãy7üýt\r¢j\ËH\ô/6-\ÓJÀu&<}\"¢QÄn@{³j\ðK\Zµ.`-N±BÚ\éÓ«hµM/^\\ß1vS\Ã/GJP!½6#¢½£9¶:Cbý±\ö\ð\æDÄR\Ý_\Ì9øC\rþSU]SE4;¼\ò\ÐBªo¯\"¢(ùø\÷Px)\'\å̵pʲ\Ô ÞÓ{P\ï4 þ\å0,@:\ÑL\\j\Õ_\ðùgù080\îc\"!\Ü\ë,x77®\ñ\Z\n\ðdû\"~h\à\ç\çºù\Þ~P9I¸ý,FS\ç\Ô;km@F2?\n%û5z|:ú¸5h\ÐD\í\ÛC\ØtG\ÂTET\å}-þ\Ëqz\ç{\n¥ûiI\î³Q¿3þ#\æ\Ìdtþ-\Æ!\ÙDWD\Ò#w#e&°\Z\ñÀQNDûwÝj\íq²¢\Ô{p¤£k§£+Ü{gZÇ«rÐ¥l«Á\"ülm$l\Ûp$I?1»`<\Éø\Ë:$\ê\ìBi\æbBc]\ÎÝk8q°vCdW\èxU\Þ\'¹y¿À¡¬ \ðQ\é.=o
3µV
%þ|F\õ\×=V\Ê+$E\'^9O\õ7K\í\ÏL\õè½²Z
\äÈ«³I\Î4xøa°\Ï\ÂA\á>\Î\Ägз³³¾\0`_c:\ZÁ\rF´(D\ä~@3Ñ·3)±¾S:¸\ß _?ðµ\\¨M)\è´\î8\Ö~x/\Æ\ïÁ\ÆF!\ÕPn\ép/ؽ\å\Ø%h[pÝXes,ھĢ\nieL\Ó\ÉD\÷JKKr\ÖuA)JÀw\"\öd´±þ\ò¥x^¶\Ì\âW\Èû\np\Ó\É\æ$¹\Æ\0D\÷(¢-]]¢\Ó:hk¹\çiüd3þ¿ª\ñ+\ð\î;\Ø\ßUnþ4\nKɶP(P\Çhý\ë\×\n;^»Æ²,]|X¾Ë«±Tw V\Æ\Þv\0¼uª¿à¾bS(Á\ÕÙZ?=g`x\ÚÑ¡5ÀMY9\Z\\Sl3¨e:Y j\æBn©v¡J5sûz\ÒS\Ð\Æ.\'\Ô\Ò%jhÌ\0Z=_\ð\Z¢\ó¥\öh`oe[\âº\Ë)\ñ#\ñ2§i°\ìM\É7×bV\÷\õ«N@t\òSý_]\ëýÿwfHuÍHe¦\ãm\Ð\éÿ\ÛHk ZµDÛ½ø\î\'(¹NT»\ç|_;\ç\"´\ëVJLÉi¾\ñ\ò\Ë/\÷Bh ³¸8\â\"©\Æ/\á!w\Âû\ìÀ\ë\ÊF5\åüvT!+QÁ/AFOÒ\Ò\ê4C\Zp0jC\nJ\Ì\'6¸£Q~\Ô7vD3/\ØB5¨ª\Õ@\ÛZ p\É\ã\Ëþ_\0³à¯s]Jý\0\0\0\0IEND®B`');
INSERT INTO `ost_file_chunk` VALUES (2,0,_binary 'Canned Attachments Rock!');
/*!40000 ALTER TABLE `ost_file_chunk` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_filter`
--
DROP TABLE IF EXISTS `ost_filter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_filter` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`execorder` int unsigned NOT NULL DEFAULT '99',
`isactive` tinyint unsigned NOT NULL DEFAULT '1',
`flags` int unsigned DEFAULT '0',
`status` int unsigned NOT NULL DEFAULT '0',
`match_all_rules` tinyint unsigned NOT NULL DEFAULT '0',
`stop_onmatch` tinyint unsigned NOT NULL DEFAULT '0',
`target` enum('Any','Web','Email','API') NOT NULL DEFAULT 'Any',
`email_id` int unsigned NOT NULL DEFAULT '0',
`name` varchar(32) NOT NULL DEFAULT '',
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `target` (`target`),
KEY `email_id` (`email_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_filter`
--
LOCK TABLES `ost_filter` WRITE;
/*!40000 ALTER TABLE `ost_filter` DISABLE KEYS */;
INSERT INTO `ost_filter` VALUES (1,99,1,0,0,0,0,'Email',0,'SYSTEM BAN LIST','Internal list for email banning. Do not remove','2025-05-22 17:32:39','2025-05-22 17:32:39');
/*!40000 ALTER TABLE `ost_filter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_filter_action`
--
DROP TABLE IF EXISTS `ost_filter_action`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_filter_action` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`filter_id` int unsigned NOT NULL,
`sort` int unsigned NOT NULL DEFAULT '0',
`type` varchar(24) NOT NULL,
`configuration` text,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `filter_id` (`filter_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_filter_action`
--
LOCK TABLES `ost_filter_action` WRITE;
/*!40000 ALTER TABLE `ost_filter_action` DISABLE KEYS */;
INSERT INTO `ost_filter_action` VALUES (1,1,1,'reject','[]','2025-05-22 17:32:39');
/*!40000 ALTER TABLE `ost_filter_action` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_filter_rule`
--
DROP TABLE IF EXISTS `ost_filter_rule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_filter_rule` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`filter_id` int unsigned NOT NULL DEFAULT '0',
`what` varchar(32) NOT NULL,
`how` enum('equal','not_equal','contains','dn_contain','starts','ends','match','not_match') NOT NULL,
`val` varchar(255) NOT NULL,
`isactive` tinyint unsigned NOT NULL DEFAULT '1',
`notes` tinytext NOT NULL,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `filter` (`filter_id`,`what`,`how`,`val`),
KEY `filter_id` (`filter_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_filter_rule`
--
LOCK TABLES `ost_filter_rule` WRITE;
/*!40000 ALTER TABLE `ost_filter_rule` DISABLE KEYS */;
INSERT INTO `ost_filter_rule` VALUES (1,1,'email','equal','test@example.com',1,'','0000-00-00 00:00:00','2025-05-22 17:32:39');
/*!40000 ALTER TABLE `ost_filter_rule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_form`
--
DROP TABLE IF EXISTS `ost_form`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_form` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`pid` int unsigned DEFAULT NULL,
`type` varchar(8) NOT NULL DEFAULT 'G',
`flags` int unsigned NOT NULL DEFAULT '1',
`title` varchar(255) NOT NULL,
`instructions` varchar(512) DEFAULT NULL,
`name` varchar(64) NOT NULL DEFAULT '',
`notes` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `type` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_form`
--
LOCK TABLES `ost_form` WRITE;
/*!40000 ALTER TABLE `ost_form` DISABLE KEYS */;
INSERT INTO `ost_form` VALUES (1,NULL,'U',1,'Contact Information',NULL,'',NULL,'2025-05-22 17:32:37','2025-05-22 17:32:37');
INSERT INTO `ost_form` VALUES (2,NULL,'T',1,'Ticket Details','<p>Please Describe Your Issue</p>','','<p>This form will be attached to every ticket, regardless of its source. You can add any fields to this form and they will be available to all tickets, and will be searchable with advanced search and filterable.</p>','2025-05-22 17:32:38','2025-05-23 11:17:24');
INSERT INTO `ost_form` VALUES (3,NULL,'C',1,'Company Information','Details available in email templates','',NULL,'2025-05-22 17:32:38','2025-05-22 17:32:38');
INSERT INTO `ost_form` VALUES (4,NULL,'O',1,'Organization Information','Details on user organization','',NULL,'2025-05-22 17:32:38','2025-05-22 17:32:38');
INSERT INTO `ost_form` VALUES (5,NULL,'A',1,'Task Details','Please Describe The Issue','','This form is used to create a task.','2025-05-22 17:32:38','2025-05-22 17:32:38');
INSERT INTO `ost_form` VALUES (6,NULL,'L1',0,'Ticket Status Properties','Properties that can be set on a ticket status.','',NULL,'2025-05-22 17:32:39','2025-05-22 17:32:39');
/*!40000 ALTER TABLE `ost_form` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_form_entry`
--
DROP TABLE IF EXISTS `ost_form_entry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_form_entry` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`form_id` int unsigned NOT NULL,
`object_id` int unsigned DEFAULT NULL,
`object_type` char(1) NOT NULL DEFAULT 'T',
`sort` int unsigned NOT NULL DEFAULT '1',
`extra` text,
`created` datetime NOT NULL,
`updated` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `entry_lookup` (`object_type`,`object_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_form_entry`
--
LOCK TABLES `ost_form_entry` WRITE;
/*!40000 ALTER TABLE `ost_form_entry` DISABLE KEYS */;
INSERT INTO `ost_form_entry` VALUES (1,4,1,'O',1,NULL,'2025-05-22 17:32:39','2025-05-22 17:32:39');
INSERT INTO `ost_form_entry` VALUES (2,3,NULL,'C',1,NULL,'2025-05-22 17:32:42','2025-05-22 17:32:42');
INSERT INTO `ost_form_entry` VALUES (3,1,1,'U',1,NULL,'2025-05-22 17:32:42','2025-05-22 17:32:42');
INSERT INTO `ost_form_entry` VALUES (4,2,1,'T',0,'{\"disable\":[]}','2025-05-22 17:32:42','2025-05-22 17:32:42');
INSERT INTO `ost_form_entry` VALUES (5,1,2,'U',1,NULL,'2025-05-23 11:26:27','2025-05-23 11:26:27');
INSERT INTO `ost_form_entry` VALUES (6,2,2,'T',0,'{\"disable\":[]}','2025-05-23 11:26:27','2025-05-23 11:26:27');
INSERT INTO `ost_form_entry` VALUES (7,1,3,'U',1,NULL,'2025-05-23 11:32:26','2025-05-23 11:32:26');
INSERT INTO `ost_form_entry` VALUES (8,2,3,'T',0,'{\"disable\":[]}','2025-05-23 11:32:26','2025-05-23 11:32:26');
INSERT INTO `ost_form_entry` VALUES (9,1,4,'U',1,NULL,'2025-05-23 11:36:03','2025-05-23 11:36:03');
INSERT INTO `ost_form_entry` VALUES (10,2,4,'T',0,'{\"disable\":[]}','2025-05-23 11:36:03','2025-05-23 11:36:03');
INSERT INTO `ost_form_entry` VALUES (11,1,5,'U',1,NULL,'2025-05-23 11:40:16','2025-05-23 11:40:16');
INSERT INTO `ost_form_entry` VALUES (12,2,5,'T',0,'{\"disable\":[]}','2025-05-23 11:40:16','2025-05-23 11:40:16');
/*!40000 ALTER TABLE `ost_form_entry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ost_form_entry_values`
--
DROP TABLE IF EXISTS `ost_form_entry_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ost_form_entry_values` (
`entry_id` int unsigned NOT NULL,
`field_id` int unsigned NOT NULL,
`value` text,
`value_id` int DEFAULT NULL,
PRIMARY KEY (`entry_id`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ost_form_entry_values`
--
LOCK TABLES `ost_form_entry_values` WRITE;
/*!40000 ALTER TABLE `ost_form_entry_values` DISABLE KEYS */;
INSERT INTO `ost_form_entry_values` VALUES (2,23,'SOC-Desk',NULL);
INSERT INTO `ost_form_entry_values` VALUES (2,24,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (2,25,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (2,26,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (4,20,'osTicket Installed!',NULL);
INSERT INTO `ost_form_entry_values` VALUES (5,3,'5551553',NULL);
INSERT INTO `ost_form_entry_values` VALUES (5,4,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (6,20,'RANSOMWARE!',NULL);
INSERT INTO `ost_form_entry_values` VALUES (6,22,'Normal',2);
INSERT INTO `ost_form_entry_values` VALUES (6,36,'2',NULL);
INSERT INTO `ost_form_entry_values` VALUES (7,3,'5551390',NULL);
INSERT INTO `ost_form_entry_values` VALUES (7,4,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (8,20,'More bandwidth needed',NULL);
INSERT INTO `ost_form_entry_values` VALUES (8,22,'Normal',2);
INSERT INTO `ost_form_entry_values` VALUES (8,36,'3',NULL);
INSERT INTO `ost_form_entry_values` VALUES (9,3,'5551901',NULL);
INSERT INTO `ost_form_entry_values` VALUES (9,4,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (10,20,'Spotify Install',NULL);
INSERT INTO `ost_form_entry_values` VALUES (10,22,'Normal',2);
INSERT INTO `ost_form_entry_values` VALUES (10,36,'2',NULL);
INSERT INTO `ost_form_entry_values` VALUES (11,3,'5551290',NULL);
INSERT INTO `ost_form_entry_values` VALUES (11,4,NULL,NULL);
INSERT INTO `ost_form_entry_values` VALUES (12,20,'Phish?',NULL);
INSERT INTO `ost_form_entry_values` VALUES (12,22,'Normal',2);
INSERT INTO `ost_form_entry_values` VALUES (12,36,'3',NULL);
/*!40000 ALTER TABLE `ost_form_entry_values` ENABLE KEYS */;